Reduce struct mrb_context

This commit is contained in:
dearblue
2020-04-26 21:15:24 +09:00
parent 954ce5379c
commit 1b0cf6a91b
+2 -2
View File
@@ -164,8 +164,8 @@ struct mrb_context {
struct RProc **ensure; /* ensure handler stack */
uint16_t esize, eidx;
enum mrb_fiber_state status;
mrb_bool vmexec;
enum mrb_fiber_state status : 4;
mrb_bool vmexec : 1;
struct RFiber *fib;
};