Rebase.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / fp-int-convert-2.c
blob4c00e8fa71fbaa3dd83205381a599f6271f8b889
1 /* { dg-do run } */
2 /* { dg-require-effective-target int128 } */
4 extern void abort (void);
6 float __attribute__((noinline))
7 f (__uint128_t x)
9 return x + 1;
12 int
13 main (void)
15 if (f (0xffffffffu) == 0)
16 abort ();
17 return 0;