Index: src/compiler/arm/code-generator-arm.cc |
diff --git a/src/compiler/arm/code-generator-arm.cc b/src/compiler/arm/code-generator-arm.cc |
index 1ff7ea3acc65e05cf0ca29420b308efcb93d6e23..54aebd97fa13dd0df42ef5d1ea065e432a483c6f 100644 |
--- a/src/compiler/arm/code-generator-arm.cc |
+++ b/src/compiler/arm/code-generator-arm.cc |
@@ -313,7 +313,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
Operand(Code::kHeaderSize - kHeapObjectTag)); |
__ Call(ip); |
} |
- AddSafepointAndDeopt(instr); |
+ RecordCallPosition(instr); |
DCHECK_EQ(LeaveCC, i.OutputSBit()); |
break; |
} |
@@ -328,7 +328,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
} |
__ ldr(ip, FieldMemOperand(func, JSFunction::kCodeEntryOffset)); |
__ Call(ip); |
- AddSafepointAndDeopt(instr); |
+ RecordCallPosition(instr); |
DCHECK_EQ(LeaveCC, i.OutputSBit()); |
break; |
} |