Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / gcc.dg / i386-pic-1.c
blob8fa2caf67f7f5cee90b0e7e06659b86594cb8381
1 /* PR target/8340 */
2 /* { dg-do compile { target i?86-*-* } } */
3 /* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
4 /* { dg-options "-fPIC" } */
6 int foo ()
8 static int a;
10 __asm__ __volatile__ ( /* { dg-error "PIC register" } */
11 "xorl %%ebx, %%ebx\n"
12 "movl %%ebx, %0\n"
13 : "=m" (a)
15 : "%ebx"
18 return a;