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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr35163.c
blob
4950d6d2027d22571305e71358a7ce57c8ad3953
1
extern
void
abort
(
void
);
2
3
int
main
()
4
{
5
signed char
a
= -
30
;
6
signed char
b
= -
31
;
7
if
(
a
> (
unsigned short
)
b
)
8
abort
();
9
return
0
;
10
}
11