repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (160224:163495).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ssa-ccp-31.c
blob
c155e921c78c573a74217a64f29a138da3bdb607
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-ccp1" } */
3
4
int
g
(
int
i
,
int
j
)
5
{
6
int
t
=
0
;
7
int
i1
;
8
9
if
(
i
==
j
)
10
t
=
3
;
11
for
(
i1
=
0
;
i1
<
10000
;
i1
++)
h
();
12
if
(
t
!=
5
)
13
return
0
;
14
else
15
return
1
;
16
}
17
18
/* { dg-final { scan-tree-dump-times "Folding predicate.*to 1" 1 "ccp1" } } */
19
/* { dg-final { cleanup-tree-dump "ccp1" } } */