commit | 0a324aa53affc2fbadb95be577d22c9bebb1c29e | [log] [tgz] |
---|---|---|
author | Andreas Neustifter <astifter-llvm@gmx.at> | Wed Aug 19 05:44:39 2009 +0000 |
committer | Andreas Neustifter <astifter-llvm@gmx.at> | Wed Aug 19 05:44:39 2009 +0000 |
tree | 53e9e846b4ac39ce8aaeb6a2c9672b15a6f2d730 | |
parent | e476004b94582c64a0fabaa0e251a0f070909843 [diff] [blame] |
Broke line before break. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79404 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp index 2ed466b..98ea251 100644 --- a/lib/Analysis/ProfileInfo.cpp +++ b/lib/Analysis/ProfileInfo.cpp
@@ -54,7 +54,8 @@ if (ProcessedPreds.insert(*PI).second) { double w = getEdgeWeight(getEdge(*PI, BB)); if (w == MissingValue) { - Count = MissingValue; break; + Count = MissingValue; + break; } Count += w; }