| Index: src/full-codegen/mips/full-codegen-mips.cc | 
| diff --git a/src/full-codegen/mips/full-codegen-mips.cc b/src/full-codegen/mips/full-codegen-mips.cc | 
| index 2719a3062a0f455c36c00c4e856264c7294c397a..e0230e0fe672807d685d9366945120ed563701d0 100644 | 
| --- a/src/full-codegen/mips/full-codegen-mips.cc | 
| +++ b/src/full-codegen/mips/full-codegen-mips.cc | 
| @@ -3080,23 +3080,18 @@ void FullCodeGenerator::VisitCall(Call* expr) { | 
| // Call to a lookup slot (dynamically introduced variable). | 
| PushCalleeAndWithBaseObject(expr); | 
| EmitCall(expr); | 
| -  } else if (call_type == Call::PROPERTY_CALL) { | 
| +  } else if (call_type == Call::NAMED_PROPERTY_CALL) { | 
| Property* property = callee->AsProperty(); | 
| -    bool is_named_call = property->key()->IsPropertyName(); | 
| -    if (property->IsSuperAccess()) { | 
| -      if (is_named_call) { | 
| -        EmitSuperCallWithLoadIC(expr); | 
| -      } else { | 
| -        EmitKeyedSuperCallWithLoadIC(expr); | 
| -      } | 
| -    } else { | 
| -        VisitForStackValue(property->obj()); | 
| -      if (is_named_call) { | 
| -        EmitCallWithLoadIC(expr); | 
| -      } else { | 
| -        EmitKeyedCallWithLoadIC(expr, property->key()); | 
| -      } | 
| -    } | 
| +    VisitForStackValue(property->obj()); | 
| +    EmitCallWithLoadIC(expr); | 
| +  } else if (call_type == Call::KEYED_PROPERTY_CALL) { | 
| +    Property* property = callee->AsProperty(); | 
| +    VisitForStackValue(property->obj()); | 
| +    EmitKeyedCallWithLoadIC(expr, property->key()); | 
| +  } else if (call_type == Call::NAMED_SUPER_PROPERTY_CALL) { | 
| +    EmitSuperCallWithLoadIC(expr); | 
| +  } else if (call_type == Call::KEYED_SUPER_PROPERTY_CALL) { | 
| +    EmitKeyedSuperCallWithLoadIC(expr); | 
| } else if (call_type == Call::SUPER_CALL) { | 
| EmitSuperConstructorCall(expr); | 
| } else { | 
|  |