| Index: src/ia32/lithium-codegen-ia32.h
 | 
| diff --git a/src/ia32/lithium-codegen-ia32.h b/src/ia32/lithium-codegen-ia32.h
 | 
| index 260711bce297fa9c702bcce4284404eddf86c149..e68452774155225754fc94b1c91c9c84459f02be 100644
 | 
| --- a/src/ia32/lithium-codegen-ia32.h
 | 
| +++ b/src/ia32/lithium-codegen-ia32.h
 | 
| @@ -83,7 +83,6 @@ class LCodeGen BASE_EMBEDDED {
 | 
|    Heap* heap() const { return isolate()->heap(); }
 | 
|    Zone* zone() const { return zone_; }
 | 
|  
 | 
| -  // TODO(svenpanne) Use this consistently.
 | 
|    int LookupDestination(int block_id) const {
 | 
|      return chunk()->LookupDestination(block_id);
 | 
|    }
 | 
| @@ -318,7 +317,8 @@ class LCodeGen BASE_EMBEDDED {
 | 
|  
 | 
|    static Condition TokenToCondition(Token::Value op, bool is_unsigned);
 | 
|    void EmitGoto(int block);
 | 
| -  void EmitBranch(int left_block, int right_block, Condition cc);
 | 
| +  template<class InstrType>
 | 
| +  void EmitBranch(InstrType instr, Condition cc);
 | 
|    void EmitNumberUntagD(
 | 
|        Register input,
 | 
|        Register temp,
 | 
| 
 |