2 pr60822.c from the execute part of the gcc torture tests.
11 /* PR rtl-optimization/64957 */
16 return (((b
^ 5) | 1) ^ 5) | 1;
22 return (((b
^ ~5) & ~1) ^ ~5) & ~1;
26 testTortureExecute (void)
29 for (i
= 0; i
< 16; i
++)
30 if (foo (i
) != (i
| 1) || bar (i
) != (i
& ~1))