Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
981206-1.c
blob: 39dce71f9c9d33014e59ece351ed00c9730d9cec [
file
] [
log
] [
blame
]
/* Verify unaligned address aliasing on Alpha EV[45]. */
void
abort
(
void
);
void
exit
(
int
);
static
unsigned
short
x
,
y
;
void
foo
()
{
x
=
0x345
;
y
=
0x567
;
}
int
main
()
{
foo
();
if
(
x
!=
0x345
||
y
!=
0x567
)
abort
();
exit
(
0
);
}