diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-07-07 00:08:19 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-07-07 00:08:19 +0000 |
commit | 2bd65363a8e8c182ba1a0b4422d79c79ede9f1e3 (patch) | |
tree | 94783d5a58bc294eedf7bdbdd5f85b86c46644fb /llvm/lib/Target/ARM/ARMTargetMachine.h | |
parent | 41e97da74f8f9cfdffbdcf48cb6ec41c4c3c4624 (diff) | |
download | bcm5719-llvm-2bd65363a8e8c182ba1a0b4422d79c79ede9f1e3.tar.gz bcm5719-llvm-2bd65363a8e8c182ba1a0b4422d79c79ede9f1e3.zip |
Factor ARM triple parsing out of ARMSubtarget. Another step towards making ARM subtarget info available to MC.
llvm-svn: 134569
Diffstat (limited to 'llvm/lib/Target/ARM/ARMTargetMachine.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMTargetMachine.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetMachine.h b/llvm/lib/Target/ARM/ARMTargetMachine.h index a4a792763d0..bc3d46a50ea 100644 --- a/llvm/lib/Target/ARM/ARMTargetMachine.h +++ b/llvm/lib/Target/ARM/ARMTargetMachine.h @@ -41,8 +41,7 @@ private: public: ARMBaseTargetMachine(const Target &T, const std::string &TT, - const std::string &CPU, const std::string &FS, - bool isThumb); + const std::string &CPU, const std::string &FS); virtual ARMJITInfo *getJITInfo() { return &JITInfo; } virtual const ARMSubtarget *getSubtargetImpl() const { return &Subtarget; } |