Index: src/ia32/code-stubs-ia32.h |
diff --git a/src/ia32/code-stubs-ia32.h b/src/ia32/code-stubs-ia32.h |
index 14259241c851f22cb997f17fc714c19b69039a3f..0982fe1fdce3c0bca90e951f3891895d7f06055a 100644 |
--- a/src/ia32/code-stubs-ia32.h |
+++ b/src/ia32/code-stubs-ia32.h |
@@ -40,30 +40,6 @@ void ArrayNativeCode(MacroAssembler* masm, |
bool construct_call, |
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, |
- UNTAGGED = 1 << TranscendentalCache::kTranscendentalTypeBits |
- }; |
- |
- TranscendentalCacheStub(TranscendentalCache::Type type, |
- ArgumentType argument_type) |
- : type_(type), argument_type_(argument_type) {} |
- void Generate(MacroAssembler* masm); |
- static void GenerateOperation(MacroAssembler* masm, |
- TranscendentalCache::Type type); |
- private: |
- TranscendentalCache::Type type_; |
- ArgumentType argument_type_; |
- |
- Major MajorKey() { return TranscendentalCache; } |
- int MinorKey() { return type_ | argument_type_; } |
- Runtime::FunctionId RuntimeFunction(); |
-}; |
- |
class StoreBufferOverflowStub: public PlatformCodeStub { |
public: |