blob: 6274dffa50d2520c9b0e448656c19c49f05b9b90 (
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
|
/*
20070212-3.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
struct foo { int i; int j; };
int bar (struct foo *k, int k2, int f, int f2)
{
int *p, *q;
int res;
if (f)
p = &k->i;
else
p = &k->j;
res = *p;
k->i = 1;
if (f2)
q = p;
else
q = &k2;
return res + *q;
}
void
testTortureExecute (void)
{
struct foo k;
k.i = 0;
k.j = 1;
if (bar (&k, 1, 1, 1) != 1)
ASSERT (0);
return;
}
|