Broke line before break.

llvm-svn: 79404
This commit is contained in:
Andreas Neustifter 2009-08-19 05:44:39 +00:00
parent acf0b258de
commit 21e66abd40
1 changed files with 2 additions and 1 deletions

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