| Index: src/ppc/lithium-ppc.cc
|
| diff --git a/src/ppc/lithium-ppc.cc b/src/ppc/lithium-ppc.cc
|
| index fb587842fa58e38109ff5f6be3946f167315dc97..e72709016b77c43d3e132f229e03827c40e42b35 100644
|
| --- a/src/ppc/lithium-ppc.cc
|
| +++ b/src/ppc/lithium-ppc.cc
|
| @@ -928,7 +928,7 @@ void LChunkBuilder::AddInstruction(LInstruction* instr,
|
| }
|
| chunk_->AddInstruction(instr, current_block_);
|
|
|
| - if (instr->IsCall()) {
|
| + if (instr->IsCall() || instr->IsPrologue()) {
|
| HValue* hydrogen_value_for_lazy_bailout = hydrogen_val;
|
| if (hydrogen_val->HasObservableSideEffects()) {
|
| HSimulate* sim = HSimulate::cast(hydrogen_val->next());
|
| @@ -942,6 +942,11 @@ void LChunkBuilder::AddInstruction(LInstruction* instr,
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoPrologue(HPrologue* instr) {
|
| + return new (zone()) LPrologue();
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoGoto(HGoto* instr) {
|
| return new (zone()) LGoto(instr->FirstSuccessor());
|
| }
|
|
|