| Index: src/ppc/full-codegen-ppc.cc
|
| diff --git a/src/ppc/full-codegen-ppc.cc b/src/ppc/full-codegen-ppc.cc
|
| index c71a95f6bff10a89bfbe488463e99c4b323c568d..213756e875bc2f2cab90f052442bf1125afb49cd 100644
|
| --- a/src/ppc/full-codegen-ppc.cc
|
| +++ b/src/ppc/full-codegen-ppc.cc
|
| @@ -890,16 +890,16 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
|
|
| void FullCodeGenerator::VisitModuleDeclaration(ModuleDeclaration* declaration) {
|
| Variable* variable = declaration->proxy()->var();
|
| - Interface* interface = declaration->module()->interface();
|
| + ModuleDescriptor* descriptor = declaration->module()->descriptor();
|
| DCHECK(variable->location() == Variable::CONTEXT);
|
| - DCHECK(interface->IsFrozen());
|
| + DCHECK(descriptor->IsFrozen());
|
|
|
| Comment cmnt(masm_, "[ ModuleDeclaration");
|
| EmitDebugCheckDeclarationContext(variable);
|
|
|
| // Load instance object.
|
| __ LoadContext(r4, scope_->ContextChainLength(scope_->ScriptScope()));
|
| - __ LoadP(r4, ContextOperand(r4, interface->Index()));
|
| + __ LoadP(r4, ContextOperand(r4, descriptor->Index()));
|
| __ LoadP(r4, ContextOperand(r4, Context::EXTENSION_INDEX));
|
|
|
| // Assign it.
|
|
|