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
c++: Fix crash during NRV optimization with invalid input [PR117099, PR117129]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20080408-1.c
blob
9e1ff6395174e2fef3dbf0e014d0fc711802d99d
1
extern
void
abort
(
void
);
2
int
main
()
3
{
4
short
ssi
=
126
;
5
unsigned short
usi
=
65280
;
6
int
fail
= !(
ssi
<
usi
);
7
if
(
fail
)
8
abort
();
9
return
0
;
10
}
11