blob: 42bd5688aa1e541e31cf227b64172e2f6a4b7298 (
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
42
43
44
45
46
47
48
|
/*
980223.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
// TODO: Enable when sdcc can return struct!
#if 0
typedef struct { char *addr; long type; } object;
object bar (object blah)
{
ASSERT(0);
}
object foo (object x, object y)
{
object z = *(object*)(x.addr);
if (z.type & 64)
{
y = *(object*)(z.addr+sizeof(object));
z = *(object*)(z.addr);
if (z.type & 64)
y = bar(y);
}
return y;
}
int nil;
object cons1[2] = { {(char *) &nil, 0}, {(char *) &nil, 0} };
object cons2[2] = { {(char *) &cons1, 64}, {(char *) &nil, 0} };
#endif
void
testTortureExecute (void)
{
#if 0
object x = {(char *) &cons2, 64};
object y = {(char *) &nil, 0};
object three = foo(x,y);
return;
#endif
}
|