Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.target / i386 / 20011009-1.c
blobb78d99e997bb32ce5b94ee1ce3132707cfa0123e
1 /* { dg-do run { target i?86-*-* x86_64-*-* } } */
2 /* { dg-options "-O2" } */
4 extern void abort (void);
5 extern void exit (int);
7 int main ()
9 int x;
11 asm ("movl $26, %0 # 26 |-> reg \n\t"
12 "movl $28, %0" : "=r" (x));
13 if (x != 28)
14 abort ();
15 exit (0);