Broke line before break.
authorAndreas Neustifter <astifter-llvm@gmx.at>
Wed, 19 Aug 2009 05:44:39 +0000 (05:44 +0000)
committerAndreas 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

index 2ed466bf3238aef7934cac8c006dcedde5ebacd6..98ea25199b02e44453e8c390e9a8c2d514aeb880 100644 (file)
@@ -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;
     }