diff options
author | Andreas Neustifter <astifter-llvm@gmx.at> | 2009-08-19 05:44:39 +0000 |
---|---|---|
committer | Andreas Neustifter <astifter-llvm@gmx.at> | 2009-08-19 05:44:39 +0000 |
commit | 21e66abd409145fc49f9b75fc78517364e4b9744 (patch) | |
tree | 545f8a0f7556fe513af81ea9ba153710d1186ce5 /llvm/lib | |
parent | acf0b258de4b30e573a195fd4ff21d0e25a5fa2d (diff) | |
download | bcm5719-llvm-21e66abd409145fc49f9b75fc78517364e4b9744.tar.gz bcm5719-llvm-21e66abd409145fc49f9b75fc78517364e4b9744.zip |
Broke line before break.
llvm-svn: 79404
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Analysis/ProfileInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ProfileInfo.cpp b/llvm/lib/Analysis/ProfileInfo.cpp index 2ed466bf323..98ea25199b0 100644 --- a/llvm/lib/Analysis/ProfileInfo.cpp +++ b/llvm/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; } |