commit | 375a8bc49f1852a84bfefbe0085c08c6dde96101 | [log] [tgz] |
---|---|---|
author | Andreas Neustifter <astifter@gmx.at> | Wed Aug 19 05:44:39 2009 +0000 |
committer | Andreas Neustifter <astifter@gmx.at> | Wed Aug 19 05:44:39 2009 +0000 |
tree | 53e9e846b4ac39ce8aaeb6a2c9672b15a6f2d730 | |
parent | 0a0d5aa9ed41495171e7418c1e3be770a4546dee [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; }