OSDN Git Service

* gcc.c-torture/execute/990628-1.c: Tweak to work on targets
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 960326-1.c
1 struct s
2 {
3   int a;
4   int b;
5   short c;
6   int d[3];
7 };
8
9 struct s s = { .b = 3, .d = {2,0,0} };
10
11 main ()
12 {
13   if (s.b != 3)
14     abort ();
15   exit (0);
16 }