| Index: src/mips/assembler-mips.cc
|
| diff --git a/src/mips/assembler-mips.cc b/src/mips/assembler-mips.cc
|
| index 971e17b995c3f0c299dc234fc941fe34c49bdbb1..f2a45339913c8f6dd320fe2b07fe61e8721ee497 100644
|
| --- a/src/mips/assembler-mips.cc
|
| +++ b/src/mips/assembler-mips.cc
|
| @@ -2826,11 +2826,10 @@ void Assembler::emit_code_stub_address(Code* stub) {
|
| void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) {
|
| // We do not try to reuse pool constants.
|
| RelocInfo rinfo(pc_, rmode, data, NULL);
|
| - if (rmode >= RelocInfo::JS_RETURN &&
|
| + if (rmode >= RelocInfo::COMMENT &&
|
| rmode <= RelocInfo::DEBUG_BREAK_SLOT_AT_CONSTRUCT_CALL) {
|
| // Adjust code for new modes.
|
| DCHECK(RelocInfo::IsDebugBreakSlot(rmode)
|
| - || RelocInfo::IsJSReturn(rmode)
|
| || RelocInfo::IsComment(rmode)
|
| || RelocInfo::IsPosition(rmode));
|
| // These modes do not need an entry in the constant pool.
|
|
|