aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-06-27 05:26:28 +0000
committerEric Christopher <echristo@gmail.com>2014-06-27 05:26:28 +0000
commitbb712eda0f7a76704862d435323257b2e1059153 (patch)
tree25b95b0c93633ba615aeeb7da96d3292f8165212 /llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
parent9f62d8006ad8df2b0fb5274c83177c789f8d993d (diff)
downloadllvm-bb712eda0f7a76704862d435323257b2e1059153.zip
llvm-bb712eda0f7a76704862d435323257b2e1059153.tar.gz
llvm-bb712eda0f7a76704862d435323257b2e1059153.tar.bz2
Have SystemZSelectionDAGInfo constructor take a DataLayout rather
than a target machine since it doesn't need anything past the DataLayout. llvm-svn: 211870
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp')
-rw-r--r--llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
index 1fca067..8cce20f 100644
--- a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
@@ -31,7 +31,7 @@ SystemZTargetMachine::SystemZTargetMachine(const Target &T, StringRef TT,
// so that we can refer to it using LARL. We don't have any special
// requirements for stack variables though.
DL("E-m:e-i1:8:16-i8:8:16-i64:64-f128:64-a:8:16-n32:64"),
- InstrInfo(*this), TLInfo(*this), TSInfo(*this),
+ InstrInfo(*this), TLInfo(*this), TSInfo(DL),
FrameLowering(*this, Subtarget) {
initAsmInfo();
}