Index: src/mips64/macro-assembler-mips64.cc |
diff --git a/src/mips64/macro-assembler-mips64.cc b/src/mips64/macro-assembler-mips64.cc |
index f8e7e1f92f69c6358ea2472a80765e941d209bbc..d8bdbfac648bb51e02ff9559c8adf1c4450f83f2 100644 |
--- a/src/mips64/macro-assembler-mips64.cc |
+++ b/src/mips64/macro-assembler-mips64.cc |
@@ -1637,19 +1637,7 @@ void MacroAssembler::Usdc1(FPURegister fd, const MemOperand& rs, |
} |
void MacroAssembler::li(Register dst, Handle<Object> value, LiFlags mode) { |
- AllowDeferredHandleDereference smi_check; |
- if (value->IsSmi()) { |
- li(dst, Operand(value), mode); |
- } else { |
- DCHECK(value->IsHeapObject()); |
- if (isolate()->heap()->InNewSpace(*value)) { |
- Handle<Cell> cell = isolate()->factory()->NewCell(value); |
- li(dst, Operand(cell)); |
- ld(dst, FieldMemOperand(dst, Cell::kValueOffset)); |
- } else { |
- li(dst, Operand(value)); |
- } |
- } |
+ li(dst, Operand(value), mode); |
} |
static inline int64_t ShiftAndFixSignExtension(int64_t imm, int bitnum) { |