blob: 515d4162406534fb4895ce96a5f79db6a551223d (
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
|
struct big
{
int data[1000000];
};
struct small
{
int data[10];
};
union both
{
struct big big;
struct small small;
};
extern void *calloc (__SIZE_TYPE__, __SIZE_TYPE__);
extern void free (void *);
static int __attribute__((noinline))
foo (int fail, union both *agg)
{
int r;
if (fail)
r = agg->big.data[999999];
else
r = agg->small.data[0];
return r;
}
int main (int argc, char *argv[])
{
union both *agg = calloc (1, sizeof (struct small));
int r;
r = foo ((argc > 2000), agg);
free (agg);
return r;
}
|