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
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
vrp31.c
blob
3259cf1bd3614451b8cb533276e4155ab4de7a65
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-vrp1" } */
3
4
int
f
(
int
i
)
5
{
6
int
t
=
i
==
1
;
7
int
g
=
t
==
2
;
8
int
h
=
g
==
3
;
9
return
h
;
10
}
11
12
/* { dg-final { scan-tree-dump "return 0;" "vrp1" } } */
13