| Index: src/full-codegen/x64/full-codegen-x64.cc
|
| diff --git a/src/full-codegen/x64/full-codegen-x64.cc b/src/full-codegen/x64/full-codegen-x64.cc
|
| index 67c8ecb908ccd3d4b50c67e9b4581889f4489b00..d8ca5c47ea5094c9ab15839fa60f20d27c2f4f4c 100644
|
| --- a/src/full-codegen/x64/full-codegen-x64.cc
|
| +++ b/src/full-codegen/x64/full-codegen-x64.cc
|
| @@ -765,6 +765,9 @@ void FullCodeGenerator::VisitVariableDeclaration(
|
| PrepareForBailoutForId(proxy->id(), BailoutState::NO_REGISTERS);
|
| break;
|
| }
|
| +
|
| + case VariableLocation::MODULE:
|
| + UNREACHABLE();
|
| }
|
| }
|
|
|
| @@ -821,6 +824,9 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
| PrepareForBailoutForId(proxy->id(), BailoutState::NO_REGISTERS);
|
| break;
|
| }
|
| +
|
| + case VariableLocation::MODULE:
|
| + UNREACHABLE();
|
| }
|
| }
|
|
|
| @@ -1308,6 +1314,9 @@ void FullCodeGenerator::EmitVariableLoad(VariableProxy* proxy,
|
| context()->Plug(rax);
|
| break;
|
| }
|
| +
|
| + case VariableLocation::MODULE:
|
| + UNREACHABLE();
|
| }
|
| }
|
|
|
|
|