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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
950426-2.c
blob
e7d2d1db63e84a13b0889c7f58378642c93cb0cf
1
void
abort
(
void
);
2
void
exit
(
int
);
3
4
int
5
main
(
void
)
6
{
7
long int
i
= -
2147483647L
-
1L
;
/* 0x80000000 */
8
char
ca
=
1
;
9
10
if
(
i
>>
ca
!= -
1073741824L
)
11
abort
();
12
13
if
(
i
>>
i
/ -
2000000000L
!= -
1073741824L
)
14
abort
();
15
16
exit
(
0
);
17
}