diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-08-10 23:29:41 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-08-10 23:29:41 +0000 |
commit | 9f11c14c1c1852fc7dc2d28052d2eac60a1a5fb7 (patch) | |
tree | 93fa747df6bd15850982439fdbdaafb7fa30af14 /llvm/lib/CodeGen/TailDuplication.cpp | |
parent | 6d47d16ed61afd2d4fe60a62b82db3f7643d2f99 (diff) | |
download | bcm5719-llvm-9f11c14c1c1852fc7dc2d28052d2eac60a1a5fb7.tar.gz bcm5719-llvm-9f11c14c1c1852fc7dc2d28052d2eac60a1a5fb7.zip |
use range-based for loop; NFCI
llvm-svn: 244531
Diffstat (limited to 'llvm/lib/CodeGen/TailDuplication.cpp')
-rw-r--r-- | llvm/lib/CodeGen/TailDuplication.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/TailDuplication.cpp b/llvm/lib/CodeGen/TailDuplication.cpp index 76619dbc156..0924ce2588b 100644 --- a/llvm/lib/CodeGen/TailDuplication.cpp +++ b/llvm/lib/CodeGen/TailDuplication.cpp @@ -583,24 +583,24 @@ TailDuplicatePass::shouldTailDuplicate(const MachineFunction &MF, // Check the instructions in the block to determine whether tail-duplication // is invalid or unlikely to be profitable. unsigned InstrCount = 0; - for (MachineBasicBlock::iterator I = TailBB.begin(); I != TailBB.end(); ++I) { + for (MachineInstr &MI : TailBB) { // Non-duplicable things shouldn't be tail-duplicated. - if (I->isNotDuplicable()) + if (MI.isNotDuplicable()) return false; // Do not duplicate 'return' instructions if this is a pre-regalloc run. // A return may expand into a lot more instructions (e.g. reload of callee // saved registers) after PEI. - if (PreRegAlloc && I->isReturn()) + if (PreRegAlloc && MI.isReturn()) return false; // Avoid duplicating calls before register allocation. Calls presents a // barrier to register allocation so duplicating them may end up increasing // spills. - if (PreRegAlloc && I->isCall()) + if (PreRegAlloc && MI.isCall()) return false; - if (!I->isPHI() && !I->isDebugValue()) + if (!MI.isPHI() && !MI.isDebugValue()) InstrCount += 1; if (InstrCount > MaxDuplicateCount) |