diff options
author | Eric Christopher <echristo@gmail.com> | 2014-06-27 00:37:57 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-06-27 00:37:57 +0000 |
commit | 6b27b7a8593423895db16333ab9e9c056316162b (patch) | |
tree | 6773925ac9a2290c7ce8c365e097656559d86630 /llvm/lib/Target/MSP430/MSP430TargetMachine.cpp | |
parent | 728d6066899e9f1bc9d61365e64c14582ce1746d (diff) | |
download | bcm5719-llvm-6b27b7a8593423895db16333ab9e9c056316162b.tar.gz bcm5719-llvm-6b27b7a8593423895db16333ab9e9c056316162b.zip |
Have MSP430SelectionDAGInfo constructor take a DataLayout rather
than a target machine since it doesn't need anything past the
DataLayout.
llvm-svn: 211826
Diffstat (limited to 'llvm/lib/Target/MSP430/MSP430TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/MSP430/MSP430TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp b/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp index 50be2be3007..23a98aa6d76 100644 --- a/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp +++ b/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp @@ -35,7 +35,7 @@ MSP430TargetMachine::MSP430TargetMachine(const Target &T, Subtarget(TT, CPU, FS), // FIXME: Check DataLayout string. DL("e-m:e-p:16:16-i32:16:32-n8:16"), - InstrInfo(*this), TLInfo(*this), TSInfo(*this), + InstrInfo(*this), TLInfo(*this), TSInfo(DL), FrameLowering(Subtarget) { initAsmInfo(); } |