blob: ac4fa75ffd90ea45ce1fe69179bf662600cfc3d2 (
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
41
42
43
|
/*
961017-2.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
void
testTortureExecute (void)
{
int i = 0;
if (sizeof (unsigned long int) == 4)
{
unsigned long int z = 0;
do {
z -= 0x000040000;
i++;
if (i > 0x0004000)
ASSERT (0);
} while (z > 0);
return;
}
else if (sizeof (unsigned int) == 4)
{
unsigned int z = 0;
do {
z -= 0x000040000;
i++;
if (i > 0x0004000)
ASSERT (0);
} while (z > 0);
return;
}
else
return;
}
|