| Index: src/arm/codegen-arm.h
|
| ===================================================================
|
| --- src/arm/codegen-arm.h (revision 1913)
|
| +++ src/arm/codegen-arm.h (working copy)
|
| @@ -218,11 +218,11 @@
|
| // reach the end of the statement (ie, it does not exit via break,
|
| // continue, return, or throw). This function is used temporarily while
|
| // the code generator is being transformed.
|
| - void VisitAndSpill(Statement* statement);
|
| + inline void VisitAndSpill(Statement* statement);
|
|
|
| // Visit a list of statements and then spill the virtual frame if control
|
| // flow can reach the end of the list.
|
| - void VisitStatementsAndSpill(ZoneList<Statement*>* statements);
|
| + inline void VisitStatementsAndSpill(ZoneList<Statement*>* statements);
|
|
|
| // Main code generation function
|
| void GenCode(FunctionLiteral* fun);
|
| @@ -259,8 +259,8 @@
|
| // Generate code to push the value of an expression on top of the frame
|
| // and then spill the frame fully to memory. This function is used
|
| // temporarily while the code generator is being transformed.
|
| - void LoadAndSpill(Expression* expression,
|
| - TypeofState typeof_state = NOT_INSIDE_TYPEOF);
|
| + inline void LoadAndSpill(Expression* expression,
|
| + TypeofState typeof_state = NOT_INSIDE_TYPEOF);
|
|
|
| // Call LoadCondition and then spill the virtual frame unless control flow
|
| // cannot reach the end of the expression (ie, by emitting only
|
|
|