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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
pr68157.C
blob
1d723486fb7de06dfdb0295f09863eab8ba28761
1
// PR tree-optimization/68157
2
// { dg-do compile }
3
// { dg-options "-Ofast" }
4
5
double a, b, c, d;
6
int h, foo ();
7
8
void
9
bar ()
10
{
11
while (foo ())
12
{
13
double e = b * a * a;
14
double f = b * d;
15
if (h)
16
c = e + f;
17
}
18
}