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:
parent
59cc9e3a67
commit
bb6c0f03a7
1 changed files with 2 additions and 2 deletions
4
mjit.h
4
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. */
|
||||
|
|
Loading…
Reference in a new issue