OSDN Git Service

* gcc.dg/intmax_t-1.c: Remove mmix-*-* from dg-error statement.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / i386-local.c
1 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2 /* { dg-options "-O2 -funit-at-a-time" } */
3 /* { dg-final { scan-assembler "magic\[^\\n\]*eax" { target ilp32 } } } */
4 /* { dg-final { scan-assembler "magic\[^\\n\]*edi" { target lp64 } } } */
5
6 /* Verify that local calling convention is used.  */
7 static t(int) __attribute__ ((noinline));
8 m()
9 {
10         t(1);
11 }
12 static t(int a)
13 {
14         asm("magic %0"::"g"(a));
15 }