summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-05 04:02:55 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-05 04:02:55 +0000
commitbb6c0f03a7c0875c20efc79506316da2cb4c4aed (patch)
treecea7c362355b228486394b3438556c9195251539
parent59cc9e3a67cf8ad0dd7dc35a3f31dee70e9d9b33 (diff)
comma at the end of enum is a C99ism
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--mjit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mjit.h b/mjit.h
index 90e0f6b8fe..223b8e5d6f 100644
--- a/mjit.h
+++ b/mjit.h
@@ -22,7 +22,7 @@ enum rb_mjit_iseq_func {
/* ISEQ included not compilable insn or some assertion failed */
NOT_COMPILABLE_JIT_ISEQ_FUNC = 2,
/* End mark */
- LAST_JIT_ISEQ_FUNC = 3,
+ LAST_JIT_ISEQ_FUNC = 3
};
/* C compiler used to generate native code. */
@@ -32,7 +32,7 @@ enum rb_mjit_cc {
/* GNU Compiler Collection */
MJIT_CC_GCC = 1,
/* LLVM/Clang */
- MJIT_CC_CLANG = 2,
+ MJIT_CC_CLANG = 2
};
/* MJIT options which can be defined on the MRI command line. */