Index: src/arm/code-stubs-arm.h |
diff --git a/src/arm/code-stubs-arm.h b/src/arm/code-stubs-arm.h |
index e4006861df080f0b70cd30be8fb472d5e773d6c8..6156384f284dfb4691716482fbf367ab94aede19 100644 |
--- a/src/arm/code-stubs-arm.h |
+++ b/src/arm/code-stubs-arm.h |
@@ -37,30 +37,6 @@ namespace internal { |
void ArrayNativeCode(MacroAssembler* masm, Label* call_generic_code); |
-// Compute a transcendental math function natively, or call the |
-// TranscendentalCache runtime function. |
-class TranscendentalCacheStub: public PlatformCodeStub { |
- public: |
- enum ArgumentType { |
- TAGGED = 0 << TranscendentalCache::kTranscendentalTypeBits, |
- UNTAGGED = 1 << TranscendentalCache::kTranscendentalTypeBits |
- }; |
- |
- TranscendentalCacheStub(TranscendentalCache::Type type, |
- ArgumentType argument_type) |
- : type_(type), argument_type_(argument_type) { } |
- void Generate(MacroAssembler* masm); |
- private: |
- TranscendentalCache::Type type_; |
- ArgumentType argument_type_; |
- void GenerateCallCFunction(MacroAssembler* masm, Register scratch); |
- |
- Major MajorKey() { return TranscendentalCache; } |
- int MinorKey() { return type_ | argument_type_; } |
- Runtime::FunctionId RuntimeFunction(); |
-}; |
- |
- |
class StoreBufferOverflowStub: public PlatformCodeStub { |
public: |
explicit StoreBufferOverflowStub(SaveFPRegsMode save_fp) |