From e1f1919a379c8b757d9e4e0f36e24f97b72917a7 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Sat, 5 Aug 2023 15:40:26 +0900 Subject: [PATCH] fix debug build --- lib/cell.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/cell.c b/lib/cell.c index 4a9e6d19..0dbe5374 100644 --- a/lib/cell.c +++ b/lib/cell.c @@ -187,7 +187,6 @@ frame_locals_cellidx_fast(struct exec_context *ctx, uint32_t localidx, cidx = cellidx_lookup(fast->paramtype_cellidxes, localidx, cszp); } else { - assert(localidx < nparams + ctx->localtype->nlocals); cidx = fast->paramcsz; cidx += cellidx_lookup(fast->localtype_cellidxes, localidx - nparams, cszp);