| Index: src/hydrogen.h | 
| diff --git a/src/hydrogen.h b/src/hydrogen.h | 
| index 6cc06c6fc7302afcbd542862c4d9e485e8a8c45a..53b80e5c8b8fe11948ce03b71bc465420f385f1f 100644 | 
| --- a/src/hydrogen.h | 
| +++ b/src/hydrogen.h | 
| @@ -869,11 +869,6 @@ class HGraphBuilder: public AstVisitor { | 
| INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) | 
| #undef INLINE_FUNCTION_GENERATOR_DECLARATION | 
|  | 
| -  void HandleDeclaration(VariableProxy* proxy, | 
| -                         VariableMode mode, | 
| -                         FunctionLiteral* function, | 
| -                         int* global_count); | 
| - | 
| void VisitDelete(UnaryOperation* expr); | 
| void VisitVoid(UnaryOperation* expr); | 
| void VisitTypeof(UnaryOperation* expr); | 
| @@ -1118,6 +1113,7 @@ class HGraphBuilder: public AstVisitor { | 
| HBasicBlock* current_block_; | 
|  | 
| int inlined_count_; | 
| +  int global_count_; | 
|  | 
| Zone* zone_; | 
|  | 
|  |