[gcc]
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr43869.c
blob4157db1d16854248e0b3cb638e6c9d5283eeac6c
1 /* { dg-do compile { target lp64 } } */
3 int __attribute__((__noinline__))
4 bugged(float f1, float f2, float f3, float f4,
5 float f5, float f6, float f7, float f8)
7 return f1 || f2 || f3 || f4 || f5 != 1. || f6 != 1. || f7 != 1. || f8 != 1.;
10 int __attribute__((__noinline__, __ms_abi__)) isbugged(void)
12 return bugged(0, 0, 0, 0, 1., 1., 1., 1.);
15 int main()
17 return isbugged();