add CASE(OP_SENDB) for non direct_threaded; close #455

This commit is contained in:
Yukihiro Matsumoto
2012-09-06 22:45:42 +09:00
parent 7f30385d4a
commit e01c5a2b5b
+6
View File
@@ -723,6 +723,12 @@ mrb_run(mrb_state *mrb, struct RProc *proc, mrb_value self)
NEXT;
}
#ifndef DIRECT_THREADED
CASE(OP_SENDB) {
/* fall through */
};
#endif
L_SEND:
CASE(OP_SEND) {
/* A B C R(A) := call(R(A),Sym(B),R(A+1),... ,R(A+C-1)) */