From f9414456a5eb3fb19da4b04e768f11baff37e091 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Mon, 19 May 2025 23:09:03 +0900 Subject: [PATCH] codedump.c: output format for OP_ARRAY has changed --- src/codedump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codedump.c b/src/codedump.c index 91c1149f0..34f802fe2 100644 --- a/src/codedump.c +++ b/src/codedump.c @@ -463,7 +463,7 @@ codedump(mrb_state *mrb, const mrb_irep *irep, FILE *out) fprintf(out, "EQ\t\tR%d\t(R%d)\n", a, a+1); break; CASE(OP_ARRAY, BB): - fprintf(out, "ARRAY\t\tR%d\tR%d\t%d", a, a, b); + fprintf(out, "ARRAY\t\tR%d\t%d", a, b); print_lv_a(mrb, irep, a, out); break; CASE(OP_ARRAY2, BBB):