| Index: src/a64/code-stubs-a64.h
|
| diff --git a/src/a64/code-stubs-a64.h b/src/a64/code-stubs-a64.h
|
| index 0601decf7fd9f71dfeb5af3718822cd843ddb602..065c547134ac00b3d272e78408ca767333bca345 100644
|
| --- a/src/a64/code-stubs-a64.h
|
| +++ b/src/a64/code-stubs-a64.h
|
| @@ -68,7 +68,10 @@ class StoreBufferOverflowStub: public PlatformCodeStub {
|
|
|
| void Generate(MacroAssembler* masm);
|
|
|
| - virtual bool IsPregenerated() { return true; }
|
| + virtual bool IsPregenerated(Isolate* isolate) V8_OVERRIDE {
|
| + USE(isolate);
|
| + return true;
|
| + }
|
| static void GenerateFixedRegStubsAheadOfTime(Isolate* isolate);
|
| virtual bool SometimesSetsUpAFrame() { return false; }
|
|
|
| @@ -202,7 +205,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; }
|
|
|
|
|