summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-08-25 16:58:01 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2018-08-25 16:58:01 +0900
commit471288f37d18e640f98029fabcdcb7ee16b95d93 (patch)
tree0624dcf5f681c61b4f59b8e15441f02c9d0cab62 /mrbgems
parentd79dbd92f9104712c6cf41ab3c029dec318a757d (diff)
downloadmruby-471288f37d18e640f98029fabcdcb7ee16b95d93.tar.gz
mruby-471288f37d18e640f98029fabcdcb7ee16b95d93.zip
Reduce integer casting warnings.
Diffstat (limited to 'mrbgems')
-rw-r--r--mrbgems/mruby-compiler/core/codegen.c8
-rw-r--r--mrbgems/mruby-eval/src/eval.c6
2 files changed, 7 insertions, 7 deletions
diff --git a/mrbgems/mruby-compiler/core/codegen.c b/mrbgems/mruby-compiler/core/codegen.c
index 075945b3b..a835a563e 100644
--- a/mrbgems/mruby-compiler/core/codegen.c
+++ b/mrbgems/mruby-compiler/core/codegen.c
@@ -400,7 +400,7 @@ genjmp2(codegen_scope *s, mrb_code i, uint16_t a, int pc, int val)
}
else {
gen_B(s, i);
- gen_B(s, a);
+ gen_B(s, (uint8_t)a);
pos = s->pc;
gen_S(s, pc);
}
@@ -494,10 +494,10 @@ gen_addsub(codegen_scope *s, uint8_t op, uint16_t dst, uint16_t idx)
if (data.b >= 128) goto normal;
s->pc = s->lastpc;
if (op == OP_ADD) {
- genop_3(s, OP_ADDI, dst, idx, data.b);
+ genop_3(s, OP_ADDI, dst, idx, (uint8_t)data.b);
}
else {
- genop_3(s, OP_SUBI, dst, idx, data.b);
+ genop_3(s, OP_SUBI, dst, idx, (uint8_t)data.b);
}
break;
default:
@@ -2441,7 +2441,7 @@ codegen(codegen_scope *s, node *tree, int val)
#endif
if (i == -1) genop_1(s, OP_LOADI__1, cursp());
else if (i >= -0xffff) {
- genop_2(s, OP_LOADINEG, cursp(), -i);
+ genop_2(s, OP_LOADINEG, cursp(), (uint16_t)-i);
}
else {
int off = new_lit(s, mrb_fixnum_value(i));
diff --git a/mrbgems/mruby-eval/src/eval.c b/mrbgems/mruby-eval/src/eval.c
index f1e50e83d..b9c87f6d1 100644
--- a/mrbgems/mruby-eval/src/eval.c
+++ b/mrbgems/mruby-eval/src/eval.c
@@ -154,7 +154,7 @@ patch_irep(mrb_state *mrb, mrb_irep *irep, int bnest, mrb_irep *top)
if (arg != 0) {
/* must replace */
irep->iseq[i] = insn = OP_SETUPVAR;
- irep->iseq[i+1] = b;
+ irep->iseq[i+1] = (mrb_code)b;
irep->iseq[i+2] = arg >> 8;
irep->iseq[i+3] = arg & 0xff;
}
@@ -169,7 +169,7 @@ patch_irep(mrb_state *mrb, mrb_irep *irep, int bnest, mrb_irep *top)
int lev = c+1;
mrb_irep *tmp = search_irep(top, bnest, lev, irep);
if (potential_upvar_p(tmp->lv, b, irep_argc(tmp), tmp->nlocals)) {
- mrb_code arg = search_variable(mrb, tmp->lv[b-1].name, bnest);
+ uint16_t arg = search_variable(mrb, tmp->lv[b-1].name, bnest);
if (arg != 0) {
/* must replace */
irep->iseq[i] = OP_GETUPVAR;
@@ -188,7 +188,7 @@ patch_irep(mrb_state *mrb, mrb_irep *irep, int bnest, mrb_irep *top)
int lev = c+1;
mrb_irep *tmp = search_irep(top, bnest, lev, irep);
if (potential_upvar_p(tmp->lv, b, irep_argc(tmp), tmp->nlocals)) {
- mrb_code arg = search_variable(mrb, tmp->lv[b-1].name, bnest);
+ uint16_t arg = search_variable(mrb, tmp->lv[b-1].name, bnest);
if (arg != 0) {
/* must replace */
irep->iseq[i] = OP_SETUPVAR;