blob: 8c287994580b236782c196ee9a2d412cd2444278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* PR tree-optimization/98474 */
#ifdef __SIZEOF_INT128__
typedef __uint128_t T;
#define N (__SIZEOF_INT128__ * __CHAR_BIT__ / 2)
#else
typedef unsigned long long T;
#define N (__SIZEOF_LONG_LONG__ * __CHAR_BIT__ / 2)
#endif
__attribute__ ((noipa)) void
foo (T *x)
{
*x += ((T) 1) << (N + 1);
}
int
main ()
{
T a = ((T) 1) << (N + 1);
T b = a;
T n;
foo (&b);
n = b;
while (n >= a)
n -= a;
if ((int) (n >> N) != 0)
__builtin_abort ();
return 0;
}
|