Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index a7a4ace0e43edee9a9484fc5167e0ce8cf3c04ff..8c1e4312868aabd9f95d61d470ebe824a5b4b714 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -10051,8 +10051,8 @@ class ArrayConcatVisitor { |
// but the array blowing the limit didn't contain elements beyond the |
// provided-for index range, go to dictionary mode now. |
if (fast_elements_ && |
- index_offset_ >= static_cast<uint32_t>( |
- FixedArrayBase::cast(*storage_)->length())) { |
+ index_offset_ > |
+ static_cast<uint32_t>(FixedArrayBase::cast(*storage_)->length())) { |
SetDictionaryMode(); |
} |
} |