Index: src/ic.cc |
=================================================================== |
--- src/ic.cc (revision 6456) |
+++ src/ic.cc (working copy) |
@@ -1198,6 +1198,8 @@ |
StubCache::ComputeKeyedLoadOrStoreExternalArray(*receiver, false); |
stub = |
probe->IsFailure() ? NULL : Code::cast(probe->ToObjectUnchecked()); |
+ } else if (receiver->HasPixelElements()) { |
+ stub = pixel_array_stub(); |
} else if (receiver->HasIndexedInterceptor()) { |
stub = indexed_interceptor_stub(); |
} else if (state == UNINITIALIZED && |