blob: 44ecdc7832836a7d2e7f3c00806289ecba90f5ce (
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
|
/*
20020920-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#if 0 // TODO: enable when support struct is complete!
struct B
{
int x;
int y;
};
struct A
{
int z;
struct B b;
};
struct A
f ()
{
struct B b = { 0, 1 };
struct A a = { 2, b };
return a;
}
#endif
void
testTortureExecute (void)
{
#if 0
struct A a = f ();
if (a.z != 2 || a.b.x != 0 || a.b.y != 1)
ASSERT (0);
return;
#endif
}
|