Index: src/runtime/runtime-object.cc |
diff --git a/src/runtime/runtime-object.cc b/src/runtime/runtime-object.cc |
index b2a736d7a5bb41e07532366ac815da3693bcbace..c83b247009dc892984ed7c166f79ef20207cc1c1 100644 |
--- a/src/runtime/runtime-object.cc |
+++ b/src/runtime/runtime-object.cc |
@@ -1400,9 +1400,8 @@ RUNTIME_FUNCTION(Runtime_LoadMutableDouble) { |
RUNTIME_ASSERT(field_index.outobject_array_index() < |
object->properties()->length()); |
} |
- Handle<Object> raw_value(object->RawFastPropertyAt(field_index), isolate); |
- RUNTIME_ASSERT(raw_value->IsMutableHeapNumber()); |
- return *Object::WrapForRead(isolate, raw_value, Representation::Double()); |
+ return *JSObject::FastPropertyAt(object, Representation::Double(), |
+ field_index); |
} |