1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
shyouhei 2018-02-05 04:02:55 +00:00
parent 59cc9e3a67
commit bb6c0f03a7

4
mjit.h
View file

@ -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. */