| Index: src/mips/lithium-mips.cc
|
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
|
| index 5ca8cd9b96c69fef24d28a699391eb7c267061d5..a4b183e23ba827f061c74823fef894f9aecfaded 100644
|
| --- a/src/mips/lithium-mips.cc
|
| +++ b/src/mips/lithium-mips.cc
|
| @@ -703,6 +703,18 @@ LInstruction* LChunkBuilder::DoDummyUse(HDummyUse* instr) {
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoEnvironmentBind(HEnvironmentBind* instr) {
|
| + UNREACHABLE();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +LInstruction* LChunkBuilder::DoEnvironmentLookup(HEnvironmentLookup* instr) {
|
| + UNREACHABLE();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoSoftDeoptimize(HSoftDeoptimize* instr) {
|
| return AssignEnvironment(new(zone()) LDeoptimize);
|
| }
|
|
|