struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-pr66757.c
blob85899365cfa7d85e78a513a1ff4213f61ed3ff9b
1 /*
2 pr66757.c from the execute part of the gcc torture tests.
3 */
5 #include <testfwk.h>
7 /* PR tree-optimization/66757 */
8 /* Testcase by Zhendong Su <su@cs.ucdavis.edu> */
10 int a, b;
12 void
13 testTortureExecute (void)
15 unsigned int t = (unsigned char) (~b);
17 if ((t ^ 1) / 255)
18 ASSERT (0);
20 return;