| Index: src/x64/lithium-x64.cc
|
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc
|
| index 1217a4000df42e15b91295e3cdbbe80c76846609..19ef5e01c5c220be2004609bab8e0db564a61856 100644
|
| --- a/src/x64/lithium-x64.cc
|
| +++ b/src/x64/lithium-x64.cc
|
| @@ -707,6 +707,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);
|
| }
|
|
|