diff options
author | Andreas Neustifter <astifter-llvm@gmx.at> | 2009-08-19 05:44:39 +0000 |
---|---|---|
committer | Andreas Neustifter <astifter-llvm@gmx.at> | 2009-08-19 05:44:39 +0000 |
commit | 0a324aa53affc2fbadb95be577d22c9bebb1c29e (patch) | |
tree | 53e9e846b4ac39ce8aaeb6a2c9672b15a6f2d730 /lib/Analysis | |
parent | e476004b94582c64a0fabaa0e251a0f070909843 (diff) |
Broke line before break.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79404 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/ProfileInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp index 2ed466bf32..98ea25199b 100644 --- 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; } |