| Index: src/full-codegen/x87/full-codegen-x87.cc
|
| diff --git a/src/full-codegen/x87/full-codegen-x87.cc b/src/full-codegen/x87/full-codegen-x87.cc
|
| index a0bbb23273a5e52d7677272c5961c0f8821bfb48..25f16656a98fce91a01443b7ac3cc7111c674986 100644
|
| --- a/src/full-codegen/x87/full-codegen-x87.cc
|
| +++ b/src/full-codegen/x87/full-codegen-x87.cc
|
| @@ -754,6 +754,9 @@ void FullCodeGenerator::VisitVariableDeclaration(
|
| PrepareForBailoutForId(proxy->id(), BailoutState::NO_REGISTERS);
|
| break;
|
| }
|
| +
|
| + case VariableLocation::MODULE:
|
| + UNREACHABLE();
|
| }
|
| }
|
|
|
| @@ -804,6 +807,9 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
| PrepareForBailoutForId(proxy->id(), BailoutState::NO_REGISTERS);
|
| break;
|
| }
|
| +
|
| + case VariableLocation::MODULE:
|
| + UNREACHABLE();
|
| }
|
| }
|
|
|
| @@ -1276,6 +1282,9 @@ void FullCodeGenerator::EmitVariableLoad(VariableProxy* proxy,
|
| context()->Plug(eax);
|
| break;
|
| }
|
| +
|
| + case VariableLocation::MODULE:
|
| + UNREACHABLE();
|
| }
|
| }
|
|
|
|
|