| Index: src/hydrogen.h
|
| diff --git a/src/hydrogen.h b/src/hydrogen.h
|
| index b9d53be94e210e6b5faabf1d2918d8324ef67cc2..4d538f433990fcf20635a588553d2cac267dc1dd 100644
|
| --- a/src/hydrogen.h
|
| +++ b/src/hydrogen.h
|
| @@ -2109,9 +2109,8 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
|
| void ClearInlinedTestContext() {
|
| function_state()->ClearInlinedTestContext();
|
| }
|
| - StrictModeFlag function_strict_mode_flag() {
|
| - return function_state()->compilation_info()->is_classic_mode()
|
| - ? kNonStrictMode : kStrictMode;
|
| + StrictMode function_strict_mode() {
|
| + return function_state()->compilation_info()->strict_mode();
|
| }
|
|
|
| // Generators for inline runtime functions.
|
| @@ -2119,7 +2118,6 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
|
| void Generate##Name(CallRuntime* call);
|
|
|
| INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION)
|
| - INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION)
|
| #undef INLINE_FUNCTION_GENERATOR_DECLARATION
|
|
|
| void VisitDelete(UnaryOperation* expr);
|
| @@ -2214,11 +2212,6 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
|
| HBasicBlock* true_block,
|
| HBasicBlock* false_block);
|
|
|
| - // Visit an argument subexpression and emit a push to the outgoing arguments.
|
| - void VisitArgument(Expression* expr);
|
| -
|
| - void VisitArgumentList(ZoneList<Expression*>* arguments);
|
| -
|
| // Visit a list of expressions from left to right, each in a value context.
|
| void VisitExpressions(ZoneList<Expression*>* exprs);
|
|
|
|
|