| Index: src/mips/lithium-mips.cc
|
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
|
| index 32aae94d74f5157c0b19d829da2aebe602b894fe..1e0c2160aaf25ef356ab7a73a14392d4d727664c 100644
|
| --- a/src/mips/lithium-mips.cc
|
| +++ b/src/mips/lithium-mips.cc
|
| @@ -1097,6 +1097,14 @@ LInstruction* LChunkBuilder::DoInstanceOfKnownGlobal(
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoWrapReceiver(HWrapReceiver* instr) {
|
| + LOperand* receiver = UseRegisterAtStart(instr->receiver());
|
| + LOperand* function = UseRegisterAtStart(instr->function());
|
| + LWrapReceiver* result = new(zone()) LWrapReceiver(receiver, function);
|
| + return AssignEnvironment(DefineSameAsFirst(result));
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoApplyArguments(HApplyArguments* instr) {
|
| LOperand* function = UseFixed(instr->function(), a1);
|
| LOperand* receiver = UseFixed(instr->receiver(), a0);
|
|
|