re PR target/49866 (-mcmodel=large tail call fails to assemble)

PR target/49866
	* gcc.target/i386/pr49866.c: New test.

From-SVN: r176842
This commit is contained in:
Jakub Jelinek 2011-07-27 20:19:40 +02:00 committed by Jakub Jelinek
parent 084e45a515
commit f22cfb2e4e
2 changed files with 28 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-07-27 Jakub Jelinek <jakub@redhat.com>
PR target/49866
* gcc.target/i386/pr49866.c: New test.
2011-07-27 Yukhin Kirill <kirill.yukhin@intel.com>
* gcc.target/i386/i386.exp (check_effective_target_bmi): New.

View File

@ -0,0 +1,23 @@
/* PR target/49866 */
/* { dg-do assemble } */
/* { dg-options "-O2 -mcmodel=large" { target lp64 } } */
void fn (void *, int, int);
int fn2 (void);
void baz (int);
static void
foo (void *x, int y)
{
int i;
for (i = 0; i < y; i++)
fn (x, fn2 (), i);
}
void
bar (int u, int v, int w, void *x)
{
baz (u);
foo (x, w);
baz (u);
}