PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / 990117-1.c
bloba89dad119a69e42914c986c0e7c631a44bda302f
1 /* { dg-do compile } */
2 /* { dg-require-effective-target ia32 } */
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;