1 /* Copyright (C) 2000 Free Software Foundation.
3 by Alexandre Oliva <oliva@lsd.ic.unicamp.br> */
6 /* { dg-options "-O3" } */
8 extern void abort (void);
10 void foo () {} /* unused, but essential to trigger the bug */
14 /* use asms to prevent optimizations */
15 /* i = -1; */ asm ("" : "=r" (i
) : "0" (-1));
16 /* i = 1; */ asm ("" : "=r" (i
) : "0" (i
? 1 : 2));