vm.c: fixed wrong compilation condition for MRB_INT32.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2022-04-10 19:03:37 +09:00
parent 17a31efa8a
commit e14782e8a1
+1 -1
View File
@@ -2384,7 +2384,7 @@ RETRY_TRY_BLOCK:
NEXT;
}
#if !defined(MRB_USE_BIGINT) || (defined(MRB_INT32) && defined(MRB_32BIT))
#if !defined(MRB_USE_BIGINT) || defined(MRB_INT32)
L_INT_OVERFLOW:
{
mrb_value exc = mrb_exc_new_lit(mrb, E_RANGE_ERROR, "integer overflow");