blob: 140f9bb0af758fe5efffd23f258e3730ca05302b (
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
|
/*
981130-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
struct s { int a; int b;};
struct s s1;
struct s s2 = { 1, 2, };
void
check (int a, int b)
{
if (a == b)
return;
else
ASSERT (0);
}
void
testTortureExecute (void)
{
int * p;
int x;
s1.a = 9;
p = & s1.a;
s1 = s2;
x = * p;
check (x, 1);
}
|