blob: 0a8ae022fd453ad520c09c940530052fdddaa886 (
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
|
/*
const-addr-expr-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#include <stdio.h>
#include <stdlib.h>
typedef struct foo
{
int uaattrid;
const char *name;
} FOO;
FOO Upgrade_items[] =
{
{1, "1"},
{2, "2"},
{0, NULL}
};
int *Upgd_minor_ID =
(int *) &((Upgrade_items + 1)->uaattrid);
int *Upgd_minor_ID1 =
(int *) &((Upgrade_items)->uaattrid);
void
testTortureExecute (void)
{
ASSERT (*Upgd_minor_ID == 2);
ASSERT (*Upgd_minor_ID1 == 1);
return;
}
|