mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
codegen.c: genop_3 to take uint16_t instead of uint8_t.
This commit is contained in:
@@ -287,10 +287,10 @@ genop_2(codegen_scope *s, mrb_code i, uint16_t a, uint16_t b)
|
||||
}
|
||||
|
||||
static void
|
||||
genop_3(codegen_scope *s, mrb_code i, uint16_t a, uint16_t b, uint8_t c)
|
||||
genop_3(codegen_scope *s, mrb_code i, uint16_t a, uint16_t b, uint16_t c)
|
||||
{
|
||||
genop_2(s, i, a, b);
|
||||
gen_B(s, c);
|
||||
gen_B(s, (uint8_t)c);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
Reference in New Issue
Block a user