x86: Tune Skylake, Cannonlake and Icelake as Haswell
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr66757.c
blobacd4d20ff6f7b44a24de1bbe34d62915228b1f47
1 /* PR tree-optimization/66757 */
2 /* Testcase by Zhendong Su <su@cs.ucdavis.edu> */
4 int a, b;
6 int
7 main (void)
9 unsigned int t = (unsigned char) (~b);
11 if ((t ^ 1) / 255)
12 __builtin_abort ();
14 return 0;