2 20001108-1.c from the execute part of the gcc torture tests.
11 #if !defined(__SDCC_pdk14) // Lack of memory
13 signed_poly (long long sum
, long x
)
15 sum
+= (long long) (long) sum
* (long long) x
;
20 unsigned_poly (unsigned long long sum
, unsigned long x
)
22 sum
+= (unsigned long long) (unsigned long) sum
* (unsigned long long) x
;
28 testTortureExecute (void)
30 #if !defined(__SDCC_pdk14) // Lack of memory
31 if (signed_poly (2LL, -3) != -4LL)
34 if (unsigned_poly (2ULL, 3) != 8ULL)