| Index: src/ppc/lithium-ppc.cc
|
| diff --git a/src/ppc/lithium-ppc.cc b/src/ppc/lithium-ppc.cc
|
| index 81eb3fd6e47a957e15e72379988e340e668b6bb1..fd2cc44cec08aaebfa8aa094f146e08c017acecf 100644
|
| --- a/src/ppc/lithium-ppc.cc
|
| +++ b/src/ppc/lithium-ppc.cc
|
| @@ -2006,6 +2006,15 @@ LInstruction* LChunkBuilder::DoCheckSmi(HCheckSmi* instr) {
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoCheckArrayBufferNotNeutered(
|
| + HCheckArrayBufferNotNeutered* instr) {
|
| + LOperand* view = UseRegisterAtStart(instr->value());
|
| + LCheckArrayBufferNotNeutered* result =
|
| + new (zone()) LCheckArrayBufferNotNeutered(view);
|
| + return AssignEnvironment(result);
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoCheckInstanceType(HCheckInstanceType* instr) {
|
| LOperand* value = UseRegisterAtStart(instr->value());
|
| LInstruction* result = new (zone()) LCheckInstanceType(value);
|
|
|