1 /* PR target/36936 */ 2 /* { dg-do compile } */ 3 /* { dg-require-effective-target ia32 } */ 4 /* { dg-options "-O2 -march=i686" } */ 5 /* { dg-final { scan-assembler-not "cmov" } } */ 6 7 extern int foo (int) __attribute__((__target__("arch=i386"))); 8 9 int foo(int x)10foo (int x) 11 { 12 if (x < 0) 13 x = 1; 14 return x; 15 } 16