PR ipa/61602
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr55633.c
blob5d30d61a61bd7f760427cd5e579521a1ca01aa23
1 /* PR fortran/55633 */
2 /* { dg-do run { target int128 } } */
4 extern void abort (void);
6 __attribute__((noinline, noclone)) void
7 bar (__int128_t *x)
9 int c = sizeof (__int128_t) * __CHAR_BIT__;
10 if (c > 127)
11 c = 127;
12 if (*x != c)
13 abort ();
16 __attribute__((noinline)) void
17 foo (void)
19 __int128_t m, ma;
20 ma = 0;
21 m = 0;
22 m = ~m;
25 if (m == 0 || ma > 126)
26 break;
27 ma = ma + 1;
28 m = ((__uint128_t) m) >> 1;
30 while (1);
31 bar (&ma);
34 int
35 main ()
37 foo ();
38 return 0;