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;
     }