summaryrefslogtreecommitdiff
path: root/tool/ruby_vm
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-27 09:09:42 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-27 09:09:42 +0000
commite3e09806a227acb9d1d4ced37c808d97f4eeb3cf (patch)
tree1e18ce1231aeb0eaf342d471f6e24a29348fd12a /tool/ruby_vm
parentbc64df876ebe96fa5da2b98d6227a8ef4163b911 (diff)
Arrange as same as comment and return statement
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/ruby_vm')
-rw-r--r--tool/ruby_vm/views/_sp_inc_helpers.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/ruby_vm/views/_sp_inc_helpers.erb b/tool/ruby_vm/views/_sp_inc_helpers.erb
index 6308107e9f..f4cf50b8c8 100644
--- a/tool/ruby_vm/views/_sp_inc_helpers.erb
+++ b/tool/ruby_vm/views/_sp_inc_helpers.erb
@@ -18,8 +18,8 @@ sp_inc_of_sendish(const struct rb_call_info *ci)
* 3. Pop receiver.
* 4. Push return value.
*/
- const int argc = ci->orig_argc;
const int argb = (ci->flag & VM_CALL_ARGS_BLOCKARG) ? 1 : 0;
+ const int argc = ci->orig_argc;
const int recv = 1;
const int retn = 1;