* gcc.target/i386/sibcall-2.c (dg-final): Properly escape '[' and ']'
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sibcall-2.c
blob4fae8bef309c27e62f1ce9ada484abc9c9c0ac03
1 /* { dg-do compile { xfail { *-*-* } } } */
2 /* { dg-require-effective-target ia32 } */
3 /* { dg-options "-O2" } */
5 extern int doo1 (int);
6 extern int doo2 (int);
7 extern void bar (char *);
9 int foo (int a)
11 char s[256];
12 bar (s);
13 return (a < 0 ? doo1 : doo2) (a);
16 /* { dg-final { scan-assembler-not "call\[ \t\]*.%eax" } } */