blob: c1244e3f5668b3b532d8f110959a1fc9e2862a4f (
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
|
/*
950710-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
// TODO: Enable when sdcc supports struct return!
#if 0
struct twelve
{
int a;
int b;
int c;
};
struct pair
{
int first;
int second;
};
struct pair
g ()
{
struct pair p;
return p;
}
static void
f ()
{
int i;
for (i = 0; i < 1; i++)
{
int j;
for (j = 0; j < 1; j++)
{
if (0)
{
int k;
for (k = 0; k < 1; k++)
{
struct pair e = g ();
}
}
else
{
struct twelve a, b;
if ((((char *) &b - (char *) &a) < 0
? (-((char *) &b - (char *) &a))
: ((char *) &b - (char *) &a)) < sizeof (a))
ASSERT (0);
}
}
}
}
#endif
void
testTortureExecute (void)
{
#if 0
f ();
return;
#endif
}
|