Index: src/compiler/x64/code-generator-x64.cc |
diff --git a/src/compiler/x64/code-generator-x64.cc b/src/compiler/x64/code-generator-x64.cc |
index 973bbd1ef06bb794d153701c380eeae63b2c4057..aae5aceefbc80627d3c8d42166cfab9b6f5dadd1 100644 |
--- a/src/compiler/x64/code-generator-x64.cc |
+++ b/src/compiler/x64/code-generator-x64.cc |
@@ -526,7 +526,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
int entry = Code::kHeaderSize - kHeapObjectTag; |
__ Call(Operand(reg, entry)); |
} |
- AddSafepointAndDeopt(instr); |
+ RecordCallPosition(instr); |
break; |
} |
case kArchCallJSFunction: { |
@@ -538,7 +538,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
__ Assert(equal, kWrongFunctionContext); |
} |
__ Call(FieldOperand(func, JSFunction::kCodeEntryOffset)); |
- AddSafepointAndDeopt(instr); |
+ RecordCallPosition(instr); |
break; |
} |
case kArchJmp: |