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
/
compile
/
20031102-1.c
blob
e32b8bd8612269e201e51c89d2f45853ad1be382
1
/* PR optimization/10817.
2
Check that the following code doesn't cause any problems
3
for GCC's if-conversion passes. */
4
5
int
foo
(
int
t
)
6
{
7
int
result
=
0
;
8
if
(
t
!=
0
)
9
result
=
t
;
10
return
result
;
11
}
12