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
libstdc++: Improve comment for _Hashtable::_M_insert_unique_node
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr81388-2.c
blob
aa40588f35864f3e339f8737970162ad496bf91a
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-ivcanon-details" } */
3
4
void
bar
();
5
void
foo
(
unsigned
dst
)
6
{
7
unsigned
end
=
dst
;
8
do
{
9
bar
();
10
dst
+=
2
;
11
}
while
(
dst
<
end
);
12
}
13
14
/* { dg-final { scan-tree-dump " zero if " "ivcanon" } } */