| Index: src/compiler/ppc/code-generator-ppc.cc
|
| diff --git a/src/compiler/ppc/code-generator-ppc.cc b/src/compiler/ppc/code-generator-ppc.cc
|
| index e5a3980302e17f0fdcc2bbbf110ba465957147bd..3a40fe9d8f54387f0e8e7525001bd414765f9ff1 100644
|
| --- a/src/compiler/ppc/code-generator-ppc.cc
|
| +++ b/src/compiler/ppc/code-generator-ppc.cc
|
| @@ -532,7 +532,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| __ Call(Handle<Code>::cast(i.InputHeapObject(0)),
|
| RelocInfo::CODE_TARGET);
|
| }
|
| - AddSafepointAndDeopt(instr);
|
| + RecordCallPosition(instr);
|
| DCHECK_EQ(LeaveRC, i.OutputRCBit());
|
| break;
|
| }
|
| @@ -548,7 +548,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| }
|
| __ LoadP(ip, FieldMemOperand(func, JSFunction::kCodeEntryOffset));
|
| __ Call(ip);
|
| - AddSafepointAndDeopt(instr);
|
| + RecordCallPosition(instr);
|
| DCHECK_EQ(LeaveRC, i.OutputRCBit());
|
| break;
|
| }
|
|
|