Index: src/mips/assembler-mips-inl.h |
diff --git a/src/mips/assembler-mips-inl.h b/src/mips/assembler-mips-inl.h |
index 1fdb3e97e5a18cd83f6548084c56bf28ceefabc9..3e98222fc6394cc8d4aeb2cf68b305fc69777fd6 100644 |
--- a/src/mips/assembler-mips-inl.h |
+++ b/src/mips/assembler-mips-inl.h |
@@ -307,8 +307,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_); |
} |
@@ -317,8 +317,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); |