tcc-65816/test/tests/981206-1.c
2017-06-09 13:52:12 +02:00

18 lines
213 B
C

/* Verify unaligned address aliasing on Alpha EV[45]. */
static unsigned short x, y;
void foo()
{
x = 0x345;
y = 0x567;
}
int main()
{
foo ();
if (x != 0x345 || y != 0x567)
abort ();
exit (0);
}