diff options
author | Eric Christopher <echristo@gmail.com> | 2014-06-18 22:48:09 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-06-18 22:48:09 +0000 |
commit | 3d19f1388f185a6e0f8775428a5cc5a15af0c695 (patch) | |
tree | a9518e03c48bf0e78261d64e5b57c93e55692841 /llvm/lib/Target/ARM/ARMTargetMachine.cpp | |
parent | 2b0fa433a087aefc83b457bcf64b2099255d0b1f (diff) | |
download | llvm-3d19f1388f185a6e0f8775428a5cc5a15af0c695.zip llvm-3d19f1388f185a6e0f8775428a5cc5a15af0c695.tar.gz llvm-3d19f1388f185a6e0f8775428a5cc5a15af0c695.tar.bz2 |
Move ARMJITInfo off of the TargetMachine and down onto the subtarget.
This required untangling a mess of headers that included around.
This a recommit of r210953 with a fix for the removed accessor
for JITInfo.
llvm-svn: 211233
Diffstat (limited to 'llvm/lib/Target/ARM/ARMTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetMachine.cpp b/llvm/lib/Target/ARM/ARMTargetMachine.cpp index a938242..7a3836a 100644 --- a/llvm/lib/Target/ARM/ARMTargetMachine.cpp +++ b/llvm/lib/Target/ARM/ARMTargetMachine.cpp @@ -52,7 +52,7 @@ ARMBaseTargetMachine::ARMBaseTargetMachine(const Target &T, StringRef TT, CodeGenOpt::Level OL, bool isLittle) : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL), - Subtarget(TT, CPU, FS, isLittle, Options), JITInfo() { + Subtarget(TT, CPU, FS, isLittle, Options) { // Default to triple-appropriate float ABI if (Options.FloatABIType == FloatABI::Default) |