index
:
toolchain_gcc.git
master
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
gcc-4.9
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
920721-1.c
blob: 086b5463f7f070755ae7636e2671ce17c0cc2022 (
plain
)
1
2
long
f
(
short
a
,
short
b
){
return
(
long
)
a
/
b
;}
main
(){
if
(
f
(-
32768
,-
1
)!=
32768L
)
abort
();
else
exit
(
0
);}