| Index: src/compiler/register-allocator-verifier.h | 
| diff --git a/src/compiler/register-allocator-verifier.h b/src/compiler/register-allocator-verifier.h | 
| index 4e35dc2457342835ab538c5c401f65866042e30b..70552fbfdd0d44ea8afc4ff63a2bfd322c447c53 100644 | 
| --- a/src/compiler/register-allocator-verifier.h | 
| +++ b/src/compiler/register-allocator-verifier.h | 
| @@ -49,10 +49,9 @@ class RegisterAllocatorVerifier FINAL : public ZoneObject { | 
| OperandConstraint* operand_constraints_; | 
| }; | 
|  | 
| -  class OutgoingMapping; | 
| +  class BlockMaps; | 
|  | 
| typedef ZoneVector<InstructionConstraint> Constraints; | 
| -  typedef ZoneVector<OutgoingMapping*> OutgoingMappings; | 
|  | 
| Zone* zone() const { return zone_; } | 
| const RegisterConfiguration* config() { return config_; } | 
| @@ -68,8 +67,7 @@ class RegisterAllocatorVerifier FINAL : public ZoneObject { | 
| void CheckConstraint(const InstructionOperand* op, | 
| const OperandConstraint* constraint); | 
|  | 
| -  void ConstructOutgoingMappings(OutgoingMappings* outgoing_mappings, | 
| -                                 bool initial_pass); | 
| +  void VerifyGapMoves(BlockMaps* outgoing_mappings, bool initial_pass); | 
|  | 
| Zone* const zone_; | 
| const RegisterConfiguration* config_; | 
|  |