2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / local.c
blobf4444951e123e31f3827cdd75ee53cb9caad8806
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -funit-at-a-time" } */
3 /* { dg-final { scan-assembler "magic\[^\\n\]*eax" { target ia32 } } } */
4 /* { dg-final { scan-assembler "magic\[^\\n\]*(edi|ecx)" { target { ! ia32 } } } } */
6 /* Verify that local calling convention is used. */
7 static void t(int) __attribute__ ((noinline));
8 extern volatile int i;
10 void m(void)
12 t(i);
15 static void t(int a)
17 asm("magic %0"::"g"(a));