OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OnlyPred
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp
68
BasicBlock *
OnlyPred
= BB->getSinglePredecessor();
69
if (!
OnlyPred
) return 0;
71
if (
OnlyPred
->getTerminator()->getNumSuccessors() != 1)
74
DEBUG(dbgs() << "Merging: " << *BB << "into: " << *
OnlyPred
);
80
//
OnlyPred
to OnlySucc.
84
OnlyPred
->getInstList().pop_back();
88
BB->replaceAllUsesWith(
OnlyPred
);
91
OnlyPred
->getInstList().splice(
OnlyPred
->end(), BB->getInstList());
108
if (!OldName.empty() && !
OnlyPred
->hasName()
[
all
...]
SimplifyCFG.cpp
[
all
...]
Completed in 193 milliseconds