1typedef const unsigned long long int CULLI;
2typedef volatile int VI;
3struct s { signed long int a; };
4
5int
6main (void)
7{
8  volatile int shiftcount = 153;
9  volatile int a = __INT_MAX__;
10  volatile int b = __INT_MAX__;
11
12  a << 152;
13  b << shiftcount;
14  a += 1;
15  b += 2;
16
17  return 0;
18}
19
20