Add `const` to `irep` structure to place data on ROM.

parent 31877043
...@@ -53,7 +53,7 @@ typedef struct mrb_irep { ...@@ -53,7 +53,7 @@ typedef struct mrb_irep {
const mrb_code *iseq; const mrb_code *iseq;
const mrb_pool_value *pool; const mrb_pool_value *pool;
const mrb_sym *syms; const mrb_sym *syms;
const struct mrb_irep **reps; const struct mrb_irep * const *reps;
const struct mrb_lvinfo *lv; const struct mrb_lvinfo *lv;
/* debug info */ /* debug info */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment