| Index: src/ic.cc
 | 
| ===================================================================
 | 
| --- src/ic.cc	(revision 10404)
 | 
| +++ src/ic.cc	(working copy)
 | 
| @@ -1267,7 +1267,8 @@
 | 
|    // Check if the given name is an array index.
 | 
|    uint32_t index;
 | 
|    if (name->AsArrayIndex(&index)) {
 | 
| -    Handle<Object> result = SetElement(receiver, index, value, strict_mode);
 | 
| +    Handle<Object> result =
 | 
| +        JSObject::SetElement(receiver, index, value, strict_mode);
 | 
|      RETURN_IF_EMPTY_HANDLE(isolate(), result);
 | 
|      return *value;
 | 
|    }
 | 
| @@ -1644,7 +1645,8 @@
 | 
|      // Check if the given name is an array index.
 | 
|      uint32_t index;
 | 
|      if (name->AsArrayIndex(&index)) {
 | 
| -      Handle<Object> result = SetElement(receiver, index, value, strict_mode);
 | 
| +      Handle<Object> result =
 | 
| +          JSObject::SetElement(receiver, index, value, strict_mode);
 | 
|        RETURN_IF_EMPTY_HANDLE(isolate(), result);
 | 
|        return *value;
 | 
|      }
 | 
| 
 |