* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr77929.c
blobbbcb04bd4f426ecf7f4f94951bd95a6a68bae95d
1 /* PR tree-optimization/77929 */
3 void bar (void);
5 void
6 foo (int x, unsigned short int y)
8 int a = 0;
9 int b = (y != 0) ? (x < y) : (a < 0);
11 if (x >= 0 & b)
12 bar ();