forked from OSchip/llvm-project
Tidy up a loop to be more idiomatic for LLVM's codebase, and remove some
extraneous whitespace. Trying to clean-up this pass as much as I can before I start making functional changes. llvm-svn: 142780
This commit is contained in:
parent
b05d9e9bea
commit
24cee10fb1
|
@ -424,34 +424,25 @@ bool BranchProbabilityAnalysis::calcFloatingPointHeuristics(BasicBlock *BB) {
|
|||
}
|
||||
|
||||
bool BranchProbabilityAnalysis::runOnFunction(Function &F) {
|
||||
|
||||
for (Function::iterator I = F.begin(), E = F.end(); I != E; ) {
|
||||
BasicBlock *BB = I++;
|
||||
|
||||
if (calcMetadataWeights(BB))
|
||||
for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
|
||||
if (calcMetadataWeights(I))
|
||||
continue;
|
||||
|
||||
if (calcLoopBranchHeuristics(BB))
|
||||
if (calcLoopBranchHeuristics(I))
|
||||
continue;
|
||||
|
||||
if (calcReturnHeuristics(BB))
|
||||
if (calcReturnHeuristics(I))
|
||||
continue;
|
||||
|
||||
if (calcPointerHeuristics(BB))
|
||||
if (calcPointerHeuristics(I))
|
||||
continue;
|
||||
|
||||
if (calcZeroHeuristics(BB))
|
||||
if (calcZeroHeuristics(I))
|
||||
continue;
|
||||
|
||||
calcFloatingPointHeuristics(BB);
|
||||
calcFloatingPointHeuristics(I);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
void BranchProbabilityInfo::getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
AU.addRequired<LoopInfo>();
|
||||
AU.setPreservesAll();
|
||||
AU.addRequired<LoopInfo>();
|
||||
AU.setPreservesAll();
|
||||
}
|
||||
|
||||
bool BranchProbabilityInfo::runOnFunction(Function &F) {
|
||||
|
|
Loading…
Reference in New Issue