blob: 7c39f4cd2a1edac40e112556236b417ff09b312b (
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 ia32 } */
/* { dg-options "-O2 -march=i386" } */
/* { dg-final { scan-assembler "cmov" } } */
extern int foo (int) __attribute__((__target__("arch=i686")));
int
foo (int x)
{
if (x < 0)
x = 1;
return x;
}
|