repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Handle unsigned constants for module I/O.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
920721-1.c
blob
e5fabbde4373f2ab557133e501b87409a5271ac1
1
void
abort
(
void
);
2
void
exit
(
int
);
3
long
f
(
short
a
,
short
b
){
return
(
long
)
a
/
b
;}
4
int
main
(
void
){
if
(
f
(-
32768
,-
1
)!=
32768L
)
abort
();
else
exit
(
0
);}