* gcc.target/i386/sibcall-2.c (dg-final): Properly escape '[' and ']'
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sibcall-4.c
blob45dde15d867af4261da22a4f620976e6f901ee22
1 /* Testcase for PR target/46219. */
2 /* { dg-do compile { xfail { *-*-* } } } */
3 /* { dg-require-effective-target ia32 } */
4 /* { dg-options "-O2" } */
6 typedef void (*dispatch_t)(long offset);
8 dispatch_t dispatch[256];
10 void male_indirect_jump (long offset)
12 dispatch[offset](offset);
15 /* { dg-final { scan-assembler-not "jmp\[ \t\]*.%eax" } } */