blob: 3ef48cdb3b70ed422a47d3a45b918fa32c220273 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*
20001108-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#if !defined(__SDCC_pdk14) // Lack of memory
long long
signed_poly (long long sum, long x)
{
sum += (long long) (long) sum * (long long) x;
return sum;
}
unsigned long long
unsigned_poly (unsigned long long sum, unsigned long x)
{
sum += (unsigned long long) (unsigned long) sum * (unsigned long long) x;
return sum;
}
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_pdk14) // Lack of memory
if (signed_poly (2LL, -3) != -4LL)
ASSERT (0);
if (unsigned_poly (2ULL, 3) != 8ULL)
ASSERT (0);
return;
#endif
}
|