summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86TargetMachine.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-06-06 23:26:43 +0000
committerEric Christopher <echristo@gmail.com>2014-06-06 23:26:43 +0000
commitdf2f80d90903477ee33a6e53e90c12475d1dfdc3 (patch)
tree80ac6c6fc6cc6baf06e06795f76f2a95d01020d2 /lib/Target/X86/X86TargetMachine.cpp
parent6c862ed02b5ca7ca16ab1e5fef3353902cd27209 (diff)
downloadllvm-df2f80d90903477ee33a6e53e90c12475d1dfdc3.tar.gz
llvm-df2f80d90903477ee33a6e53e90c12475d1dfdc3.tar.bz2
llvm-df2f80d90903477ee33a6e53e90c12475d1dfdc3.tar.xz
Remove all local variables from X86SelectionDAGInfo, the DAG has
all of the ones we were stashing away on startup. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210385 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86TargetMachine.cpp')
-rw-r--r--lib/Target/X86/X86TargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp
index 73fd21479d..83b304184f 100644
--- a/lib/Target/X86/X86TargetMachine.cpp
+++ b/lib/Target/X86/X86TargetMachine.cpp
@@ -80,7 +80,7 @@ X86TargetMachine::X86TargetMachine(const Target &T, StringRef TT, StringRef CPU,
Subtarget.getStackAlignment(),
Subtarget.is64Bit() ? -8 : -4),
DL(computeDataLayout(*getSubtargetImpl())), InstrInfo(*this),
- TLInfo(*this), TSInfo(*this), JITInfo(*this) {
+ TLInfo(*this), TSInfo(DL), JITInfo(*this) {
// Determine the PICStyle based on the target selected.
if (getRelocationModel() == Reloc::Static) {
// Unless we're in PIC or DynamicNoPIC mode, set the PIC style to None.