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
/
ssa-ccp-34.c
blob
ce8f98535bfb3015c99950462cfad4d604b34dfc
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-ccp1" } */
3
4
int
foo
(
int
x
)
5
{
6
int
y
=
0
;
7
int
z
=
x
+
1
;
8
return
z
+
y
;
9
}
10
11
/* { dg-final { scan-tree-dump-times "\\+" 1 "ccp1" } } */