| Index: src/mips64/assembler-mips64-inl.h
 | 
| diff --git a/src/mips64/assembler-mips64-inl.h b/src/mips64/assembler-mips64-inl.h
 | 
| index dede337e2a053d525958398e30cca16b0f1798a7..f1e3e587efb3b985d38f39c451b38883dac5527a 100644
 | 
| --- a/src/mips64/assembler-mips64-inl.h
 | 
| +++ b/src/mips64/assembler-mips64-inl.h
 | 
| @@ -301,8 +301,8 @@ Address RelocInfo::call_address() {
 | 
|    DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
 | 
|           (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
 | 
|    // The pc_ offset of 0 assumes mips patched return sequence per
 | 
| -  // debug-mips.cc BreakLocationIterator::SetDebugBreakAtReturn(), or
 | 
| -  // debug break slot per BreakLocationIterator::SetDebugBreakAtSlot().
 | 
| +  // debug-mips.cc BreakLocation::SetDebugBreakAtReturn(), or
 | 
| +  // debug break slot per BreakLocation::SetDebugBreakAtSlot().
 | 
|    return Assembler::target_address_at(pc_, host_);
 | 
|  }
 | 
|  
 | 
| @@ -311,8 +311,8 @@ void RelocInfo::set_call_address(Address target) {
 | 
|    DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
 | 
|           (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
 | 
|    // The pc_ offset of 0 assumes mips patched return sequence per
 | 
| -  // debug-mips.cc BreakLocationIterator::SetDebugBreakAtReturn(), or
 | 
| -  // debug break slot per BreakLocationIterator::SetDebugBreakAtSlot().
 | 
| +  // debug-mips.cc BreakLocation::SetDebugBreakAtReturn(), or
 | 
| +  // debug break slot per BreakLocation::SetDebugBreakAtSlot().
 | 
|    Assembler::set_target_address_at(pc_, host_, target);
 | 
|    if (host() != NULL) {
 | 
|      Object* target_code = Code::GetCodeFromTargetAddress(target);
 | 
| 
 |