Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-widechar-1.c
blob337910a7020a3f71d39fc8c94a38df2c975453a6
1 /*
2 widechar-1.c from the execute part of the gcc torture tests.
3 */
5 #include <testfwk.h>
7 #define C L'\400'
9 #if C
10 #define zero (!C)
11 #else
12 #define zero C
13 #endif
15 void
16 testTortureExecute (void)
18 if (zero != 0)
19 ASSERT (0);
20 return;