compile.c: bit flag

* compile.c (LABEL): turn `set` flag a bit field.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54143 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-03-17 05:47:44 +00:00
parent 755a81a77a
commit 6555077aa0

View File

@ -52,9 +52,9 @@ typedef struct iseq_label_data {
int label_no;
int position;
int sc_state;
int set;
int sp;
int refcnt;
unsigned int set: 1;
} LABEL;
typedef struct iseq_insn_data {