blob: aba2bd8dacbec9af79a0d5afc25d137ddd817120 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*
20010129-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#pragma disable_warning 85
#endif
long baz1 (void *a)
{
static long l;
return l++;
}
int baz2 (const char *a)
{
return 0;
}
int baz3 (int i)
{
if (!i)
ASSERT (0);
return 1;
}
void **bar;
#if !defined(__SDCC_mcs51) && !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory
int foo (void *a, long b, int c)
{
int d = 0, e, f = 0, i;
char g[256];
void **h;
g[0] = '\n';
g[1] = 0;
while (baz1 (a) < b) {
if (g[0] != ' ' && g[0] != '\t') {
f = 1;
e = 0;
if (!d && baz2 (g) == 0) {
if ((c & 0x10) == 0)
continue;
e = d = 1;
}
if (!((c & 0x10) && (c & 0x4000) && e) && (c & 2))
continue;
if ((c & 0x2000) && baz2 (g) == 0)
continue;
if ((c & 0x1408) && baz2 (g) == 0)
continue;
if ((c & 0x200) && baz2 (g) == 0)
continue;
if (c & 0x80) {
for (h = bar, i = 0; h; h = (void **)*h, i++)
if (baz3 (i))
break;
}
f = 0;
}
}
return 0;
}
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_mcs51) && !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory
void *n = 0;
bar = &n;
foo (&n, 1, 0xc811);
return;
#endif
}
|