projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e476004
)
Broke line before break.
author
Andreas Neustifter
<astifter-llvm@gmx.at>
Wed, 19 Aug 2009 05:44:39 +0000
(
05:44
+0000)
committer
Andreas Neustifter
<astifter-llvm@gmx.at>
Wed, 19 Aug 2009 05:44:39 +0000
(
05:44
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79404
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Analysis/ProfileInfo.cpp
patch
|
blob
|
history
diff --git
a/lib/Analysis/ProfileInfo.cpp
b/lib/Analysis/ProfileInfo.cpp
index 2ed466bf3238aef7934cac8c006dcedde5ebacd6..98ea25199b02e44453e8c390e9a8c2d514aeb880 100644
(file)
--- a/
lib/Analysis/ProfileInfo.cpp
+++ b/
lib/Analysis/ProfileInfo.cpp
@@
-54,7
+54,8
@@
double ProfileInfo::getExecutionCount(const BasicBlock *BB) {
if (ProcessedPreds.insert(*PI).second) {
double w = getEdgeWeight(getEdge(*PI, BB));
if (w == MissingValue) {
- Count = MissingValue; break;
+ Count = MissingValue;
+ break;
}
Count += w;
}