| Index: src/x64/full-codegen-x64.cc
|
| diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc
|
| index d2a3b71123df9d25b3f6978be90811396252bc74..790fed4a1c88dfe88bd3be1857ff292e7f92ecb1 100644
|
| --- a/src/x64/full-codegen-x64.cc
|
| +++ b/src/x64/full-codegen-x64.cc
|
| @@ -917,15 +917,16 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
|
|
| void FullCodeGenerator::VisitModuleDeclaration(ModuleDeclaration* declaration) {
|
| Variable* variable = declaration->proxy()->var();
|
| + Interface* interface = declaration->module()->interface();
|
| DCHECK(variable->location() == Variable::CONTEXT);
|
| - DCHECK(variable->interface()->IsFrozen());
|
| + DCHECK(interface->IsFrozen());
|
|
|
| Comment cmnt(masm_, "[ ModuleDeclaration");
|
| EmitDebugCheckDeclarationContext(variable);
|
|
|
| // Load instance object.
|
| __ LoadContext(rax, scope_->ContextChainLength(scope_->ScriptScope()));
|
| - __ movp(rax, ContextOperand(rax, variable->interface()->Index()));
|
| + __ movp(rax, ContextOperand(rax, interface->Index()));
|
| __ movp(rax, ContextOperand(rax, Context::EXTENSION_INDEX));
|
|
|
| // Assign it.
|
|
|