Update ChangeLogs and version numbers for 2.95.3 release
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 981130-1.c
blob72630b07ec8c09267a611da2459dd065a6ae389f
1 struct s { int a; int b;};
2 struct s s1;
3 struct s s2 = { 1, 2, };
5 void
6 check (a, b)
7 int a;
8 int b;
10 if (a == b)
11 exit (0);
12 else
13 abort ();
16 int
17 main ()
19 int * p;
20 int x;
22 s1.a = 9;
23 p = & s1.a;
24 s1 = s2;
25 x = * p;
27 check (x, 1);