Index: src/mips64/full-codegen-mips64.cc |
diff --git a/src/mips64/full-codegen-mips64.cc b/src/mips64/full-codegen-mips64.cc |
index 4fc1908a14958b890fccec303140bb677e1aa9aa..db0d8abe0e57c646684a99985893e274e9121378 100644 |
--- a/src/mips64/full-codegen-mips64.cc |
+++ b/src/mips64/full-codegen-mips64.cc |
@@ -926,14 +926,15 @@ 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(a1, scope_->ContextChainLength(scope_->ScriptScope())); |
- __ ld(a1, ContextOperand(a1, variable->interface()->Index())); |
+ __ ld(a1, ContextOperand(a1, interface->Index())); |
__ ld(a1, ContextOperand(a1, Context::EXTENSION_INDEX)); |
// Assign it. |