| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index 15e1adaf0e4d400d3296186576c67e0950cc3953..36b3177b7c02c474b058bc3f0f8f2a8c1aa5b4c1 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -10059,8 +10059,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();
|
| }
|
| }
|
|
|