Commit e01c5a2b authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

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

parent 7f30385d
......@@ -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)) */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment