aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/AArch64/AArch64InstrInfo.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-06-07 05:00:11 +0000
committerBill Wendling <isanbard@gmail.com>2013-06-07 05:00:11 +0000
commit4393f48c03300203594e22d248808f20dd59d886 (patch)
tree606c237b6821ccb088fedfdd96336787c0e77ce0 /lib/Target/AArch64/AArch64InstrInfo.cpp
parent37bfb18f8f0557611fbdf238abe200813f07d298 (diff)
downloadexternal_llvm-4393f48c03300203594e22d248808f20dd59d886.zip
external_llvm-4393f48c03300203594e22d248808f20dd59d886.tar.gz
external_llvm-4393f48c03300203594e22d248808f20dd59d886.tar.bz2
Don't cache the instruction info and register info objects.
These objects are internal to the TargetMachine object and may change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183485 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/AArch64/AArch64InstrInfo.cpp')
-rw-r--r--lib/Target/AArch64/AArch64InstrInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/AArch64/AArch64InstrInfo.cpp b/lib/Target/AArch64/AArch64InstrInfo.cpp
index cf3a2c3..f90bcef 100644
--- a/lib/Target/AArch64/AArch64InstrInfo.cpp
+++ b/lib/Target/AArch64/AArch64InstrInfo.cpp
@@ -36,7 +36,7 @@ using namespace llvm;
AArch64InstrInfo::AArch64InstrInfo(const AArch64Subtarget &STI)
: AArch64GenInstrInfo(AArch64::ADJCALLSTACKDOWN, AArch64::ADJCALLSTACKUP),
- RI(*this, STI), Subtarget(STI) {}
+ Subtarget(STI) {}
void AArch64InstrInfo::copyPhysReg(MachineBasicBlock &MBB,
MachineBasicBlock::iterator I, DebugLoc DL,