2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020225-2.c
blob5c91596096bb481ade1a54af210d06faee5587b8
1 static int
2 test(int x)
4 union
6 int i;
7 double d;
8 } a;
9 a.d = 0;
10 a.i = 1;
11 return x >> a.i;
14 int main(void)
16 if (test (5) != 2)
17 abort ();
18 exit (0);