Index: src/runtime/runtime-typedarray.cc |
diff --git a/src/runtime/runtime-typedarray.cc b/src/runtime/runtime-typedarray.cc |
index c3f69f51508e74683f25ca220e9211f7e5495f2c..26e37ac86f74a5333c93bca50c8a9c43dd374551 100644 |
--- a/src/runtime/runtime-typedarray.cc |
+++ b/src/runtime/runtime-typedarray.cc |
@@ -14,10 +14,6 @@ namespace internal { |
void Runtime::FreeArrayBuffer(Isolate* isolate, |
JSArrayBuffer* phantom_array_buffer) { |
- if (phantom_array_buffer->should_be_freed()) { |
- DCHECK(phantom_array_buffer->is_external()); |
- free(phantom_array_buffer->backing_store()); |
- } |
if (phantom_array_buffer->is_external()) return; |
size_t allocated_length = |