Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / 990117-1.c
blob3a40e7fdfca3499d8728c88a6eac007df5e4bdc0
1 /* { dg-do compile } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-O2 -march=pentiumpro" } */
5 extern __inline double
6 fabs (double __x)
8 register double __value;
9 __asm __volatile__
10 ("fabs"
11 : "=t" (__value) : "0" (__x));
12 return __value;
14 int
15 foo ()
17 int i, j, k;
18 double x = 0, y = ((i == j) ? 1 : 0);
19 for (i = 0; i < 10; i++)
21 fabs (x - y);
22 return 0;