blob: 8186807a73e60d5fe6b1301f75ab20593d6bc67f (
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
|
/*
20050929-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 compound literals are supported!
/* PR middle-end/24109 */
struct A { int i; int j; };
struct B { struct A *a; struct A *b; };
struct C { struct B *c; struct A *d; };
struct C e = { &(struct B) { &(struct A) { 1, 2 }, &(struct A) { 3, 4 } }, &(struct A) { 5, 6 } };
#endif
void
testTortureExecute (void)
{
#if 0
if (e.c->a->i != 1 || e.c->a->j != 2)
ASSERT (0);
if (e.c->b->i != 3 || e.c->b->j != 4)
ASSERT (0);
if (e.d->i != 5 || e.d->j != 6)
ASSERT (0);
return;
#endif
}
|