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 85cfab28d921a65f35483e3c9f365dbe095d6f44..61e698baf1cd4c5823fe21f6136507da7ecbb992 100644 |
--- a/src/compiler/ppc/code-generator-ppc.cc |
+++ b/src/compiler/ppc/code-generator-ppc.cc |
@@ -654,6 +654,11 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
DCHECK_EQ(LeaveRC, i.OutputRCBit()); |
break; |
} |
+ case kArchLazyBailout: { |
+ EnsureSpaceForLazyDeopt(); |
+ RecordCallPosition(instr); |
+ break; |
+ } |
case kArchPrepareCallCFunction: { |
int const num_parameters = MiscField::decode(instr->opcode()); |
__ PrepareCallCFunction(num_parameters, kScratchReg); |