aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20011009-1.c
blob: dbf32e63fba87ef04f646fd9fab23cb1d29a522d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do run { target i?86-*-* } } */
/* { 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);
}