diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-12-09 14:28:47 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-12-09 14:28:47 +0900 |
| commit | 7349902d5bfff7aef08d6f069707b12cc07e0071 (patch) | |
| tree | 63f234a28990a00041942e6e576b56d717864033 /include | |
| parent | d2a904c8848238f2e144332db61d1f613dd956c3 (diff) | |
| download | mruby-7349902d5bfff7aef08d6f069707b12cc07e0071.tar.gz mruby-7349902d5bfff7aef08d6f069707b12cc07e0071.zip | |
irep.h: `c` operand may require 16 bits for `BSS` operand type.
fix #5593
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/irep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/irep.h b/include/mruby/irep.h index 2a0e261d1..8382c3b18 100644 --- a/include/mruby/irep.h +++ b/include/mruby/irep.h @@ -122,7 +122,7 @@ struct mrb_insn_data { uint8_t insn; uint16_t a; uint16_t b; - uint8_t c; + uint16_t c; const mrb_code *addr; }; |
