mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
Fix HexagonGenExtract return status
Differential Revision: https://reviews.llvm.org/D83460
This commit is contained in:
parent
084b730605
commit
568fbc4c30
@ -221,15 +221,16 @@ bool HexagonGenExtract::convert(Instruction *In) {
|
||||
}
|
||||
|
||||
bool HexagonGenExtract::visitBlock(BasicBlock *B) {
|
||||
bool Changed = false;
|
||||
|
||||
// Depth-first, bottom-up traversal.
|
||||
for (auto *DTN : children<DomTreeNode*>(DT->getNode(B)))
|
||||
visitBlock(DTN->getBlock());
|
||||
Changed |= visitBlock(DTN->getBlock());
|
||||
|
||||
// Allow limiting the number of generated extracts for debugging purposes.
|
||||
bool HasCutoff = ExtractCutoff.getPosition();
|
||||
unsigned Cutoff = ExtractCutoff;
|
||||
|
||||
bool Changed = false;
|
||||
BasicBlock::iterator I = std::prev(B->end()), NextI, Begin = B->begin();
|
||||
while (true) {
|
||||
if (HasCutoff && (ExtractCount >= Cutoff))
|
||||
|
Loading…
Reference in New Issue
Block a user