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