| Index: src/x64/lithium-codegen-x64.h
|
| diff --git a/src/x64/lithium-codegen-x64.h b/src/x64/lithium-codegen-x64.h
|
| index 0f1a9cdb7096546b3c83e0d5461a1a7526c318bb..e2c5a0a15ab33a30a408f7f459fc8a4e9dc771fe 100644
|
| --- a/src/x64/lithium-codegen-x64.h
|
| +++ b/src/x64/lithium-codegen-x64.h
|
| @@ -130,9 +130,7 @@ class LCodeGen: public LCodeGenBase {
|
| #undef DECLARE_DO
|
|
|
| private:
|
| - StrictModeFlag strict_mode_flag() const {
|
| - return info()->is_classic_mode() ? kNonStrictMode : kStrictMode;
|
| - }
|
| + StrictMode strict_mode() const { return info()->strict_mode(); }
|
|
|
| LPlatformChunk* chunk() const { return chunk_; }
|
| Scope* scope() const { return scope_; }
|
| @@ -159,6 +157,7 @@ class LCodeGen: public LCodeGenBase {
|
|
|
| // Code generation passes. Returns true if code generation should
|
| // continue.
|
| + void GenerateBodyInstructionPre(LInstruction* instr) V8_OVERRIDE;
|
| bool GeneratePrologue();
|
| bool GenerateDeferredCode();
|
| bool GenerateJumpTable();
|
|
|