blob: 9bb08eb11c991de41a7c2b79662bba08d87433f6 (
plain)
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
41
|
/*
pr68841.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
static inline int
foo (int *x, int y)
{
int z = *x;
while (y > z)
z *= 2;
return z;
}
void
testTortureExecute (void)
{
int i;
for (i = 1; i < 17; i++)
{
int j;
int k;
j = foo (&i, 7);
if (i >= 7)
k = i;
else if (i >= 4)
k = 8 + (i - 4) * 2;
else if (i == 3)
k = 12;
else
k = 8;
if (j != k)
ASSERT (0);
}
return;
}
|