| Index: src/runtime/runtime-typedarray.cc
|
| diff --git a/src/runtime/runtime-typedarray.cc b/src/runtime/runtime-typedarray.cc
|
| index bf0ee9f1c136d087f61f6708f13e9cb928a1c3f2..d8d3e5f848c11993b68149967e89edceec9f566b 100644
|
| --- a/src/runtime/runtime-typedarray.cc
|
| +++ b/src/runtime/runtime-typedarray.cc
|
| @@ -397,7 +397,8 @@ RUNTIME_FUNCTION(Runtime_IsSharedIntegerTypedArray) {
|
| Handle<JSTypedArray> obj(JSTypedArray::cast(args[0]));
|
| return isolate->heap()->ToBoolean(obj->GetBuffer()->is_shared() &&
|
| obj->type() != kExternalFloat32Array &&
|
| - obj->type() != kExternalFloat64Array);
|
| + obj->type() != kExternalFloat64Array &&
|
| + obj->type() != kExternalUint8ClampedArray);
|
| }
|
|
|
|
|
|
|