2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 981206-1.c
blob12ec0ab1897ba770427e4e528856a4af5907264f
1 /* Verify unaligned address aliasing on Alpha EV[45]. */
3 static unsigned short x, y;
5 void foo()
7 x = 0x345;
8 y = 0x567;
11 int main()
13 foo ();
14 if (x != 0x345 || y != 0x567)
15 abort ();
16 exit (0);