2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / local.c
blob4cb5c81eb8e3952e912e52e1044f65476fe11124
1 /* { dg-do compile } */
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 } } } */
6 /* Verify that local calling convention is used. */
7 static t(int) __attribute__ ((noinline));
8 extern volatile int i;
10 void m(void)
12 t(i);
15 static t(int a)
17 asm("magic %0"::"g"(a));