* g++.dg/other/i386-2.C (dg-options): Add -mavx512pf.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / local.c
blob4423001f664f6a280719e8d513642c5972ccd145
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 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));