blob: 4ccdfcea686132912ab68286d696fb5564cea43e (
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
|
/*
20070212-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
struct f
{
int i;
};
int g(int i, int c, struct f *ff, int *p)
{
int *t;
if (c)
t = &i;
else
t = &ff->i;
*p = 0;
return *t;
}
void
testTortureExecute (void)
{
struct f f;
f.i = 1;
if (g(5, 0, &f, &f.i) != 0)
ASSERT (0);
return;
}
|