Remove some empty lines; ref #3778

parent 0828a962
...@@ -1342,10 +1342,8 @@ RETRY_TRY_BLOCK: ...@@ -1342,10 +1342,8 @@ RETRY_TRY_BLOCK:
/* A B C R(A) := call(R(A),Syms(B),R(A+1),...,R(A+C)) */ /* A B C R(A) := call(R(A),Syms(B),R(A+1),...,R(A+C)) */
int a = GETARG_A(i); int a = GETARG_A(i);
int n = GETARG_C(i); int n = GETARG_C(i);
int argc = (n == CALL_MAXARGS) ? -1 : n; int argc = (n == CALL_MAXARGS) ? -1 : n;
int bidx = (argc < 0) ? a+2 : a+n+1; int bidx = (argc < 0) ? a+2 : a+n+1;
struct RProc *m; struct RProc *m;
struct RClass *c; struct RClass *c;
mrb_callinfo *ci = mrb->c->ci; mrb_callinfo *ci = mrb->c->ci;
...@@ -1538,10 +1536,8 @@ RETRY_TRY_BLOCK: ...@@ -1538,10 +1536,8 @@ RETRY_TRY_BLOCK:
/* A C R(A) := super(R(A+1),... ,R(A+C+1)) */ /* A C R(A) := super(R(A+1),... ,R(A+C+1)) */
int a = GETARG_A(i); int a = GETARG_A(i);
int n = GETARG_C(i); int n = GETARG_C(i);
int argc = (n == CALL_MAXARGS) ? -1 : n; int argc = (n == CALL_MAXARGS) ? -1 : n;
int bidx = (argc < 0) ? a+2 : a+n+1; int bidx = (argc < 0) ? a+2 : a+n+1;
mrb_value recv; mrb_value recv;
mrb_callinfo *ci = mrb->c->ci; mrb_callinfo *ci = mrb->c->ci;
struct RProc *m; struct RProc *m;
......
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