struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-20001221-1.c
blob368d51d0b47e896a5e0aa53efe04db3ed9c6c9ec
1 /*
2 20001221-1.c from the execute part of the gcc torture tests.
3 */
5 #include <testfwk.h>
7 #ifdef __SDCC
8 #pragma std_c99
9 #pragma disable_warning 184
10 #endif
12 void
13 testTortureExecute (void)
15 // TODO: Enable as more ports support long long!
16 #if !defined(__SDCC_pic14) && !defined(__SDCC_pic16)
17 unsigned long long a;
18 if (! (a = 0xfedcba9876543210ULL))
19 ASSERT (0);
20 return;
21 #endif