summaryrefslogtreecommitdiff
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-03 02:30:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-03 02:30:37 +0000
commitbcd35a6c79fed93aeb3ea4783a85caeab26e7e09 (patch)
treef2d2ac1d56babeae5663dd90f08ea78dc9711aaa /vm_insnhelper.c
parentdba03c38c54835248766f28033b5aeddc5f052ef (diff)
vm_insnhelper.c: extra semicolon
* vm_insnhelper.c (CHECK): remove extra semicolon and fold too long line. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 04a69ccc89..9c230e018a 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -136,7 +136,11 @@ vm_check_frame(VALUE type,
VALUE given_magic = type & VM_FRAME_MAGIC_MASK;
VM_ASSERT(FIXNUM_P(type));
-#define CHECK(magic, req_block, req_me, req_cref, is_cframe) case magic: vm_check_frame_detail(type, req_block, req_me, req_cref, specval, cref_or_me, is_cframe, iseq); break;
+#define CHECK(magic, req_block, req_me, req_cref, is_cframe) \
+ case magic: \
+ vm_check_frame_detail(type, req_block, req_me, req_cref, \
+ specval, cref_or_me, is_cframe, iseq); \
+ break
switch (given_magic) {
/* BLK ME CREF CFRAME */
CHECK(VM_FRAME_MAGIC_METHOD, TRUE, TRUE, FALSE, FALSE);