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
/
pr23604.c
blob
4c2b80d56ca8d51cd7f730df585463cf4311aa30
1
extern
void
abort
(
void
);
2
3
int
g
(
int
i
,
int
j
)
4
{
5
if
(
i
>-
1
)
6
if
(
i
<
2
)
7
{
8
if
(
i
!=
j
)
9
{
10
if
(
j
!=
0
)
11
return
0
;
12
}
13
}
14
return
1
;
15
}
16
17
int
main
(
void
)
18
{
19
if
(!
g
(
1
,
0
))
20
abort
();
21
return
0
;
22
}