| Index: src/compiler/ia32/code-generator-ia32.cc
|
| diff --git a/src/compiler/ia32/code-generator-ia32.cc b/src/compiler/ia32/code-generator-ia32.cc
|
| index d20848918d30aad46f247217479f0e6b9e39544c..0bdbc5642a01a274c2650657e09136147051e4e3 100644
|
| --- a/src/compiler/ia32/code-generator-ia32.cc
|
| +++ b/src/compiler/ia32/code-generator-ia32.cc
|
| @@ -292,7 +292,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| Register reg = i.InputRegister(0);
|
| __ call(Operand(reg, Code::kHeaderSize - kHeapObjectTag));
|
| }
|
| - AddSafepointAndDeopt(instr);
|
| + RecordCallPosition(instr);
|
| break;
|
| }
|
| case kArchCallJSFunction: {
|
| @@ -304,7 +304,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| __ Assert(equal, kWrongFunctionContext);
|
| }
|
| __ call(FieldOperand(func, JSFunction::kCodeEntryOffset));
|
| - AddSafepointAndDeopt(instr);
|
| + RecordCallPosition(instr);
|
| break;
|
| }
|
| case kArchJmp:
|
|
|