Index: src/mips64/macro-assembler-mips64.cc |
diff --git a/src/mips64/macro-assembler-mips64.cc b/src/mips64/macro-assembler-mips64.cc |
index cfbfbe30808a7b56106fb53f007796575ca0cb35..caa21cabe461ca724b19ad47379ee0355f6fdbed 100644 |
--- a/src/mips64/macro-assembler-mips64.cc |
+++ b/src/mips64/macro-assembler-mips64.cc |
@@ -3107,24 +3107,6 @@ void MacroAssembler::Ret(Condition cond, |
} |
-void MacroAssembler::J(Label* L, BranchDelaySlot bdslot) { |
- BlockTrampolinePoolScope block_trampoline_pool(this); |
- |
- uint64_t imm28; |
- imm28 = jump_address(L); |
- imm28 &= kImm28Mask; |
- { BlockGrowBufferScope block_buf_growth(this); |
- // Buffer growth (and relocation) must be blocked for internal references |
- // until associated instructions are emitted and available to be patched. |
- RecordRelocInfo(RelocInfo::INTERNAL_REFERENCE_ENCODED); |
- j(imm28); |
- } |
- // Emit a nop in the branch delay slot if required. |
- if (bdslot == PROTECT) |
- nop(); |
-} |
- |
- |
void MacroAssembler::Jr(Label* L, BranchDelaySlot bdslot) { |
BlockTrampolinePoolScope block_trampoline_pool(this); |