| Index: src/runtime/runtime-literals.cc
|
| diff --git a/src/runtime/runtime-literals.cc b/src/runtime/runtime-literals.cc
|
| index 5cb97c6ce673009b02e1763a1f422a3775dbacc8..b37b46da5aad87a4582d97376d946d3e9101e0a8 100644
|
| --- a/src/runtime/runtime-literals.cc
|
| +++ b/src/runtime/runtime-literals.cc
|
| @@ -300,9 +300,7 @@ MUST_USE_RESULT static MaybeHandle<AllocationSite> GetLiteralAllocationSite(
|
| static MaybeHandle<JSObject> CreateArrayLiteralImpl(
|
| Isolate* isolate, Handle<LiteralsArray> literals, int literals_index,
|
| Handle<FixedArray> elements, int flags) {
|
| - RUNTIME_ASSERT_HANDLIFIED(
|
| - literals_index >= 0 && literals_index < literals->literals_count(),
|
| - JSObject);
|
| + CHECK(literals_index >= 0 && literals_index < literals->literals_count());
|
| Handle<AllocationSite> site;
|
| ASSIGN_RETURN_ON_EXCEPTION(
|
| isolate, site,
|
|
|