repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
981206-1.c
blob
12ec0ab1897ba770427e4e528856a4af5907264f
1
/* Verify unaligned address aliasing on Alpha EV[45]. */
2
3
static unsigned short
x
,
y
;
4
5
void
foo
()
6
{
7
x
=
0x345
;
8
y
=
0x567
;
9
}
10
11
int
main
()
12
{
13
foo
();
14
if
(
x
!=
0x345
||
y
!=
0x567
)
15
abort
();
16
exit
(
0
);
17
}