diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-05-20 17:38:48 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-05-20 17:38:48 +0000 |
commit | 0b65599015f0b51304d941ba4a14aaf0d1734341 (patch) | |
tree | 7dd00ebf5effda6c0eaf9bbda34e418c93414a32 /lib/Target/ARM/ARMSubtarget.cpp | |
parent | d0b76d00048352affac4fad0ef005e28f5340b76 (diff) | |
download | external_llvm-0b65599015f0b51304d941ba4a14aaf0d1734341.zip external_llvm-0b65599015f0b51304d941ba4a14aaf0d1734341.tar.gz external_llvm-0b65599015f0b51304d941ba4a14aaf0d1734341.tar.bz2 |
Revert accidental commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131739 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r-- | lib/Target/ARM/ARMSubtarget.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp index 0509d58..c6f266b 100644 --- a/lib/Target/ARM/ARMSubtarget.cpp +++ b/lib/Target/ARM/ARMSubtarget.cpp @@ -46,7 +46,6 @@ ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &FS, , PostRAScheduler(false) , IsR9Reserved(ReserveR9) , UseMovt(false) - , SupportsTailCall(false) , HasFP16(false) , HasD16(false) , HasHardwareDivide(false) @@ -154,8 +153,6 @@ ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &FS, else { IsR9Reserved = ReserveR9 | (ARMArchVersion < V6); UseMovt = DarwinUseMOVT && hasV6T2Ops(); - const Triple &T = getTargetTriple(); - SupportsTailCall = T.getOS() == Triple::IOS && !T.isOSVersionLT(5, 0); } if (!isThumb() || hasThumb2()) |