From 4ae5ae353564291cdb28108c26382c32242966a8 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Fri, 12 Mar 2021 16:21:32 +0900 Subject: codegen.c: no integer overflow error in `codegen`; close #5376 Add new pool value type `IREP_TT_BIGINT` and generate integer overflow error in the VM. In the future, `mruby` will support `Bignum` for integers bigger than `mrb_int` (probably using `mpz`). --- src/codedump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/codedump.c') diff --git a/src/codedump.c b/src/codedump.c index f382bb7eb..3a5f0eadb 100644 --- a/src/codedump.c +++ b/src/codedump.c @@ -6,7 +6,7 @@ #include #include -#ifndef MRB_NO_STDIO +#ifndef MRB_NOP_STDIO static void print_r(mrb_state *mrb, const mrb_irep *irep, size_t n) { -- cgit v1.2.3