diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-06-18 23:14:30 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-06-18 23:14:30 +0000 |
commit | cd828618b8c6ec58df94aec0f5546f009f2fd0d5 (patch) | |
tree | b7fd7e96a683dd2ce877fd6d7e6ad3390cc61b41 /lib/Target/ARM/ARMSubtarget.cpp | |
parent | bb4688a9cf385ccada90ebeb04b3ba5827bf213d (diff) |
Remove UseThumbBacktraces. Just check if subtarget is darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r-- | lib/Target/ARM/ARMSubtarget.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp index a978380b62..7ac7b4923d 100644 --- a/lib/Target/ARM/ARMSubtarget.cpp +++ b/lib/Target/ARM/ARMSubtarget.cpp @@ -24,7 +24,6 @@ ARMSubtarget::ARMSubtarget(const Module &M, const std::string &FS, , ARMFPUType(None) , IsThumb(isThumb) , ThumbMode(Thumb1) - , UseThumbBacktraces(false) , IsR9Reserved(false) , stackAlignment(4) , CPUString("generic") @@ -83,8 +82,6 @@ ARMSubtarget::ARMSubtarget(const Module &M, const std::string &FS, if (isAAPCS_ABI()) stackAlignment = 8; - if (isTargetDarwin()) { - UseThumbBacktraces = true; + if (isTargetDarwin()) IsR9Reserved = true; - } } |