From f269d1eb4009877765298242754b428a241f642b Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Fri, 26 May 2017 11:23:27 +0900 Subject: Distinguish OP_R_NORMAL and OP_R_RETURN. --- src/codedump.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/codedump.c') diff --git a/src/codedump.c b/src/codedump.c index c4cb06f46..6b2c43b48 100644 --- a/src/codedump.c +++ b/src/codedump.c @@ -239,6 +239,7 @@ codedump(mrb_state *mrb, mrb_irep *irep) printf("OP_RETURN\tR%d", GETARG_A(c)); switch (GETARG_B(c)) { case OP_R_NORMAL: + printf("\tnormal\t"); break; case OP_R_RETURN: printf("\treturn\t"); break; case OP_R_BREAK: -- cgit v1.2.3