2 20020503-1.c from the execute part of the gcc torture suite.
11 #if !defined(__SDCC_mcs51) && !defined(__SDCC_pdk14) && !defined(__SDCC_pic14) // Lack of memory
13 /* GCSE unified the two i<0 tests, but if-conversion to ui=abs(i)
14 insertted the code at the wrong place corrupting the i<0 test. */
17 inttostr (long i
, char buf
[128])
26 while ((ui
/= 10) != 0);
34 testTortureExecute (void)
36 #if !defined(__SDCC_mcs51) && !defined(__SDCC_pdk14) && !defined(__SDCC_pic14) // Lack of memory
39 p
= inttostr (-1, buf
);