Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / valdiag / tests / cflow.c
blobb584550114ae17f20aff8cbd4eee89e1a8899224
2 int x;
4 #ifdef TEST0
5 void foo(void)
7 while (1) ;
9 #endif
11 #ifdef TEST1
12 void foo(void)
14 while (1) ;
15 x++; /* WARNING(SDCC) */
17 #endif
19 #ifdef TEST2
20 void foo(void)
22 int y=1;
23 while (y) ; /* WARNING(SDCC) */
24 x++; /* WARNING(SDCC) */
26 #endif