Index: src/x64/code-stubs-x64.h |
diff --git a/src/x64/code-stubs-x64.h b/src/x64/code-stubs-x64.h |
index 30ef3e8c5333c1b0265df7829b6a1882eedff913..6a1a18f830a6c78f6b024b1e65b897a121835e7e 100644 |
--- a/src/x64/code-stubs-x64.h |
+++ b/src/x64/code-stubs-x64.h |
@@ -48,6 +48,8 @@ class TranscendentalCacheStub: public CodeStub { |
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_; |
@@ -55,7 +57,6 @@ class TranscendentalCacheStub: public CodeStub { |
Major MajorKey() { return TranscendentalCache; } |
int MinorKey() { return type_ | argument_type_; } |
Runtime::FunctionId RuntimeFunction(); |
- void GenerateOperation(MacroAssembler* masm); |
}; |