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/ARMCodeEmitter.cpp | |
parent | 2b0fa433a087aefc83b457bcf64b2099255d0b1f (diff) | |
download | bcm5719-llvm-3d19f1388f185a6e0f8775428a5cc5a15af0c695.tar.gz bcm5719-llvm-3d19f1388f185a6e0f8775428a5cc5a15af0c695.zip |
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/ARMCodeEmitter.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMCodeEmitter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMCodeEmitter.cpp b/llvm/lib/Target/ARM/ARMCodeEmitter.cpp index 2fd7eddd874..5fb6ebfeaae 100644 --- a/llvm/lib/Target/ARM/ARMCodeEmitter.cpp +++ b/llvm/lib/Target/ARM/ARMCodeEmitter.cpp @@ -15,6 +15,7 @@ #include "ARM.h" #include "ARMBaseInstrInfo.h" #include "ARMConstantPoolValue.h" +#include "ARMMachineFunctionInfo.h" #include "ARMRelocations.h" #include "ARMSubtarget.h" #include "ARMTargetMachine.h" |