Index: src/mips/code-stubs-mips.h |
diff --git a/src/mips/code-stubs-mips.h b/src/mips/code-stubs-mips.h |
index 18001780c3f8479c59459c835d54b55b70a84ea1..8c9d22ae5dd09cb762a7a45cbf854b478bb8ac09 100644 |
--- a/src/mips/code-stubs-mips.h |
+++ b/src/mips/code-stubs-mips.h |
@@ -69,7 +69,7 @@ class StoreBufferOverflowStub: public PlatformCodeStub { |
void Generate(MacroAssembler* masm); |
- virtual bool IsPregenerated() { return true; } |
+ virtual bool IsPregenerated(Isolate* isolate) V8_OVERRIDE { return true; } |
static void GenerateFixedRegStubsAheadOfTime(Isolate* isolate); |
virtual bool SometimesSetsUpAFrame() { return false; } |
@@ -240,7 +240,7 @@ class WriteInt32ToHeapNumberStub : public PlatformCodeStub { |
ASSERT(SignRegisterBits::is_valid(sign_.code())); |
} |
- bool IsPregenerated(); |
+ virtual bool IsPregenerated(Isolate* isolate) V8_OVERRIDE; |
static void GenerateFixedRegStubsAheadOfTime(Isolate* isolate); |
private: |
@@ -316,7 +316,7 @@ class RecordWriteStub: public PlatformCodeStub { |
INCREMENTAL_COMPACTION |
}; |
- virtual bool IsPregenerated(); |
+ virtual bool IsPregenerated(Isolate* isolate) V8_OVERRIDE; |
static void GenerateFixedRegStubsAheadOfTime(Isolate* isolate); |
virtual bool SometimesSetsUpAFrame() { return false; } |