PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sibcall-2.c
blob4c7e39c08b53659ea561cab85c52a98215b24300
1 /* { dg-do compile { target ia32 } } */
2 /* { dg-options "-O2" } */
4 extern int doo1 (int);
5 extern int doo2 (int);
6 extern void bar (char *);
8 int foo (int a)
10 char s[256];
11 bar (s);
12 return (a < 0 ? doo1 : doo2) (a);
15 /* { dg-final { scan-assembler-not "call\[ \t\]*.%eax" { xfail *-*-* } } } */