diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-11-20 06:34:27 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-11-20 18:33:41 +0900 |
| commit | 8b7a8978e2da6c0a427e08af8593e82160033756 (patch) | |
| tree | f4671ba0ebb094b614b28dedba854755dc5eecce /src/vm.c | |
| parent | 8f2c62407c0659d84126545e19505a851059e750 (diff) | |
| download | mruby-8b7a8978e2da6c0a427e08af8593e82160033756.tar.gz mruby-8b7a8978e2da6c0a427e08af8593e82160033756.zip | |
Reduce the size of `struct RBreak` to reduce memory usage.
The old size of `struct RBreak` was 56 bytes (`MRB_NO_BOXING`)
and it's bigger than other object structures. That increase the
size of `RVALUE` thus increase the total amount of memory consumption.
Diffstat (limited to 'src/vm.c')
| -rw-r--r-- | src/vm.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -810,7 +810,6 @@ break_new(mrb_state *mrb, struct RProc *p, mrb_value val) struct RBreak *brk; brk = (struct RBreak*)mrb_obj_alloc(mrb, MRB_TT_BREAK, NULL); - brk->iv = NULL; brk->proc = p; brk->val = val; |
