summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-03-03 21:18:16 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-03-03 21:18:16 +0000
commit7f1e0565b32db8b0b82f78e680718a9703445bc8 (patch)
treeb817eb96d434fc174e04981179182da7de2b91a1 /llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
parentbb8da4c08fbe6380195c61d134b149a4f4ade037 (diff)
downloadbcm5719-llvm-7f1e0565b32db8b0b82f78e680718a9703445bc8.tar.gz
bcm5719-llvm-7f1e0565b32db8b0b82f78e680718a9703445bc8.zip
Revert "Remove the explicit SDNodeIterator::operator= in favor of the implicit default"
Accidentally committed a few more of these cleanup changes than intended. Still breaking these out & tidying them up. This reverts commit r231135. llvm-svn: 231136
Diffstat (limited to 'llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp')
-rw-r--r--llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp b/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
index 5394875a6bc..4690177d029 100644
--- a/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
+++ b/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
@@ -319,7 +319,7 @@ void A57ChainingConstraint::addInterChainConstraint(PBQPRAGraph &G, unsigned Rd,
static bool regJustKilledBefore(const LiveIntervals &LIs, unsigned reg,
const MachineInstr &MI) {
- const LiveInterval &LI = LIs.getInterval(reg);
+ LiveInterval LI = LIs.getInterval(reg);
SlotIndex SI = LIs.getInstructionIndex(&MI);
return LI.expiredAt(SI);
}
OpenPOWER on IntegriCloud