summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
diff options
context:
space:
mode:
authorAditya Nandakumar <aditya_nandakumar@apple.com>2014-11-13 21:29:21 +0000
committerAditya Nandakumar <aditya_nandakumar@apple.com>2014-11-13 21:29:21 +0000
commit3053155652cf1d1c3f82f230fe62fd4c1c80b9d4 (patch)
treee2f2c870bfdc4727d94df94d4750f753dc7967cc /llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
parent829da45631de0383ba9043dcee0fd78c90aaac1c (diff)
downloadbcm5719-llvm-3053155652cf1d1c3f82f230fe62fd4c1c80b9d4.tar.gz
bcm5719-llvm-3053155652cf1d1c3f82f230fe62fd4c1c80b9d4.zip
We can get the TLOF from the TargetMachine - so constructor no longer requires TargetLoweringObjectFile to be passed.
llvm-svn: 221926
Diffstat (limited to 'llvm/lib/Target/AArch64/AArch64ISelLowering.cpp')
-rw-r--r--llvm/lib/Target/AArch64/AArch64ISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
index b600cb07bf1..04ea60c51b0 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -68,7 +68,7 @@ EnableAArch64SlrGeneration("aarch64-shift-insert-generation", cl::Hidden,
AArch64TargetLowering::AArch64TargetLowering(const TargetMachine &TM)
- : TargetLowering(TM, TM.getObjFileLowering()) {
+ : TargetLowering(TM) {
Subtarget = &TM.getSubtarget<AArch64Subtarget>();
// AArch64 doesn't have comparisons which set GPRs or setcc instructions, so
OpenPOWER on IntegriCloud