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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
920922-1.c
blob
4fae192bb90d94133f163bdf74def8b18144c3cd
1
unsigned long
*
2
f
(
p
)
unsigned long
*
p
;
3
{
4
unsigned long
a
= (*
p
++) >>
24
;
5
return
p
+
a
;
6
}
7
8
main
()
9
{
10
unsigned long
x
=
0x80000000
UL
;
11
if
(
f
(&
x
) != &
x
+
0x81
)
12
abort
();
13
exit
(
0
);
14
}