From b1ec92f7cd3a86f88a2e82a7dbf0ad0b1ab1c5c1 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Mon, 28 Apr 2014 11:59:46 +0900 Subject: fix OP_BLKPUSH dump format --- src/codegen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/codegen.c') diff --git a/src/codegen.c b/src/codegen.c index f77158188..4c9323695 100644 --- a/src/codegen.c +++ b/src/codegen.c @@ -2864,7 +2864,7 @@ codedump(mrb_state *mrb, mrb_irep *irep) print_lv(mrb, irep, c, RA); break; case OP_BLKPUSH: - printf("OP_BLKPUSH\tR%d\t%d:%d:%d:%d\n", GETARG_A(c), + printf("OP_BLKPUSH\tR%d\t%d:%d:%d:%d", GETARG_A(c), (GETARG_Bx(c)>>10)&0x3f, (GETARG_Bx(c)>>9)&0x1, (GETARG_Bx(c)>>4)&0x1f, -- cgit v1.2.3