]> git.gag.com Git - fw/sdcc/blob - support/regression/tests/bug-1406131.c
* as/link/lkar.h: sgetl and sputl are independent of endianness
[fw/sdcc] / support / regression / tests / bug-1406131.c
1 /* bug-1406131.c
2
3    always false while-loop
4 */
5 #include <testfwk.h>
6
7 void
8 testwhile(void)
9 {
10   do
11     ;
12   while (0);
13   
14   while (0)
15     ;
16   
17   for (; 0; )
18     ;
19 }