| Index: src/ia32/code-stubs-ia32.h
|
| diff --git a/src/ia32/code-stubs-ia32.h b/src/ia32/code-stubs-ia32.h
|
| index e80acc6ccfcc4fc3581eb205153d5a7d99a8c753..5c8eca37b5bd966cb15ae4f61c9da0afef2f328f 100644
|
| --- a/src/ia32/code-stubs-ia32.h
|
| +++ b/src/ia32/code-stubs-ia32.h
|
| @@ -74,7 +74,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; }
|
|
|
| @@ -327,7 +327,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; }
|
|
|
|
|