aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20011009-1.c
blob: b78d99e997bb32ce5b94ee1ce3132707cfa0123e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do run { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2" } */

extern void abort (void);
extern void exit (int);

int main ()
{
  int x;

  asm ("movl $26, %0 # 26 |-> reg \n\t"
       "movl $28, %0" : "=r" (x));
  if (x != 28)
    abort ();
  exit (0);
}