2 950704-1.c from the execute part of the gcc torture suite.
11 // TODO: Enable when sdcc supports long long in these ports!
12 #if !defined(__SDCC_pic14) && !defined(__SDCC_pic16)
16 f (long long x
, long long y
)
24 if ((y
< 0) || (r
>= 0))
29 if ((y
> 0) || (r
< 0))
38 testTortureExecute (void)
40 #if !defined(__SDCC_pdk14) // Lack of memory
53 f (0x8000000000000000LL
, 0x8000000000000000LL
);
57 f (0x8000000000000000LL
, -1LL);
61 f (0x7fffffffffffffffLL
, 0x7fffffffffffffffLL
);
65 f (0x7fffffffffffffffLL
, 1LL);
69 f (0x7fffffffffffffffLL
, 0x8000000000000000LL
);