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 | 4fcd8250ae5667f1c4ed3f6b0f6ab8272cc51ecc (patch) | |
tree | 8e05e55a5cb08288fb24a504e6d5f2574f29330a /llvm/lib/Target/ARM/ARMSubtarget.h | |
parent | 02cefc2c237d0d8ae15a4915f0386543dc191fca (diff) | |
download | bcm5719-llvm-4fcd8250ae5667f1c4ed3f6b0f6ab8272cc51ecc.tar.gz bcm5719-llvm-4fcd8250ae5667f1c4ed3f6b0f6ab8272cc51ecc.zip |
Revert accidental commit.
llvm-svn: 131739
Diffstat (limited to 'llvm/lib/Target/ARM/ARMSubtarget.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.h b/llvm/lib/Target/ARM/ARMSubtarget.h index c1494109a45..0271c873f19 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/lib/Target/ARM/ARMSubtarget.h @@ -87,11 +87,6 @@ protected: /// imms (including global addresses). bool UseMovt; - /// SupportsTailCall - True if the OS supports tail call. The dynamic linker - /// must be able to synthesize call stubs for interworking between ARM and - /// Thumb. - bool SupportsTailCall; - /// HasFP16 - True if subtarget supports half-precision FP (We support VFP+HF /// only so far) bool HasFP16; @@ -222,7 +217,6 @@ protected: bool isR9Reserved() const { return IsR9Reserved; } bool useMovt() const { return UseMovt && hasV6T2Ops(); } - bool supportsTailCall() const { return SupportsTailCall; } bool allowsUnalignedMem() const { return AllowsUnalignedMem; } |