Distinguish OP_R_NORMAL and OP_R_RETURN.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-05-26 11:23:27 +09:00
parent e3438f404a
commit f269d1eb40
+1
View File
@@ -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: