* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr37664.c
blobcf5c83d7b2decef794f2cd19d41cac9f0c4cd378
1 /* PR tree-optimization/37664 */
3 int v;
5 int
6 foo ()
8 int a = 0x8899A862;
9 int b = 0x8E * a;
10 int c = (b % b);
11 if (v > (4294967295U >> c))
12 return v;
13 return 0;