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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pred-1.c
blob
97e3cb78198bf6514207648ea4b62e07868a5c3f
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-profile_estimate" } */
3
int
a
[
100
];
4
void
foo
(
int
);
5
int
6
main
()
7
{
8
int
i
;
9
for
(
i
=
0
;
i
<
100
;
i
++)
10
{
11
if
(
a
[
i
])
12
continue
;
13
foo
(
i
);
14
}
15
}
16
// { dg-final { scan-tree-dump "continue heuristics" "profile_estimate" } }