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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr81388-1.c
blob
85c00e56144d542cc52e8687717f2667af33fefb
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-strict-overflow -fdump-tree-ivcanon-details" } */
3
4
void
bar
();
5
void
foo
(
char
*
dst
)
6
{
7
char
*
const
end
=
dst
;
8
do
{
9
bar
();
10
dst
+=
2
;
11
}
while
(
dst
<
end
);
12
}
13
14
/* { dg-final { scan-tree-dump " zero if " "ivcanon" } } */