From 0a324aa53affc2fbadb95be577d22c9bebb1c29e Mon Sep 17 00:00:00 2001 From: Andreas Neustifter Date: Wed, 19 Aug 2009 05:44:39 +0000 Subject: [PATCH] Broke line before break. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79404 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/ProfileInfo.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp index 2ed466bf323..98ea25199b0 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; }