aboutsummaryrefslogtreecommitdiff
path: root/llvm/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
commite5add682cefcb1ffd55838886626bbb13646173a (patch)
tree7859639a6062f0de2ec3ff172951f042c15d4849 /llvm/lib/Target/X86/X86TargetMachine.cpp
parent7f0a5c5141b598dbf9dcca2a4a21af78547782b0 (diff)
downloadllvm-e5add682cefcb1ffd55838886626bbb13646173a.zip
llvm-e5add682cefcb1ffd55838886626bbb13646173a.tar.gz
llvm-e5add682cefcb1ffd55838886626bbb13646173a.tar.bz2
Remove all local variables from X86SelectionDAGInfo, the DAG has
all of the ones we were stashing away on startup. llvm-svn: 210385
Diffstat (limited to 'llvm/lib/Target/X86/X86TargetMachine.cpp')
-rw-r--r--llvm/lib/Target/X86/X86TargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86TargetMachine.cpp b/llvm/lib/Target/X86/X86TargetMachine.cpp
index 73fd214..83b30418 100644
--- a/llvm/lib/Target/X86/X86TargetMachine.cpp
+++ b/llvm/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.