mirror of
https://github.com/danog/ir.git
synced 2025-01-22 05:31:32 +01:00
Fix compilation warnings
This commit is contained in:
parent
0d3af66a2b
commit
257bdff21a
@ -740,7 +740,7 @@ binop_fp:
|
||||
}
|
||||
break;
|
||||
case IR_RLOAD:
|
||||
if (IR_REGSET_IN(IR_REGSET_UNION(ctx->fixed_regset, IR_REGSET_FIXED), insn->op2)) {
|
||||
if (IR_REGSET_IN(IR_REGSET_UNION((ir_regset)ctx->fixed_regset, IR_REGSET_FIXED), insn->op2)) {
|
||||
return IR_SKIPPED | IR_RLOAD;
|
||||
}
|
||||
return IR_RLOAD;
|
||||
@ -3146,7 +3146,7 @@ static void ir_emit_rload(ir_ctx *ctx, ir_ref def, ir_insn *insn)
|
||||
ir_reg src_reg = insn->op2;
|
||||
ir_type type = insn->type;
|
||||
|
||||
if (IR_REGSET_IN(IR_REGSET_UNION(ctx->fixed_regset, IR_REGSET_FIXED), src_reg)) {
|
||||
if (IR_REGSET_IN(IR_REGSET_UNION((ir_regset)ctx->fixed_regset, IR_REGSET_FIXED), src_reg)) {
|
||||
if (ctx->vregs[def]
|
||||
&& ctx->live_intervals[ctx->vregs[def]]
|
||||
&& ctx->live_intervals[ctx->vregs[def]]->stack_spill_pos != -1) {
|
||||
@ -5148,7 +5148,7 @@ void *ir_emit_code(ir_ctx *ctx, size_t *size_ptr)
|
||||
c = '\b';
|
||||
} else if (str[i+1] == 'e') {
|
||||
i++;
|
||||
c = '\e';
|
||||
c = 27; /* '\e'; */
|
||||
} else if (str[i+1] == 'f') {
|
||||
i++;
|
||||
c = '\f';
|
||||
|
@ -1519,7 +1519,7 @@ store_int:
|
||||
}
|
||||
break;
|
||||
case IR_RLOAD:
|
||||
if (IR_REGSET_IN(IR_REGSET_UNION(ctx->fixed_regset, IR_REGSET_FIXED), insn->op2)) {
|
||||
if (IR_REGSET_IN(IR_REGSET_UNION((ir_regset)ctx->fixed_regset, IR_REGSET_FIXED), insn->op2)) {
|
||||
return IR_SKIPPED | IR_RLOAD;
|
||||
}
|
||||
return IR_RLOAD;
|
||||
@ -5459,7 +5459,7 @@ static void ir_emit_rload(ir_ctx *ctx, ir_ref def, ir_insn *insn)
|
||||
ir_reg src_reg = insn->op2;
|
||||
ir_type type = insn->type;
|
||||
|
||||
if (IR_REGSET_IN(IR_REGSET_UNION(ctx->fixed_regset, IR_REGSET_FIXED), src_reg)) {
|
||||
if (IR_REGSET_IN(IR_REGSET_UNION((ir_regset)ctx->fixed_regset, IR_REGSET_FIXED), src_reg)) {
|
||||
if (ctx->vregs[def]
|
||||
&& ctx->live_intervals[ctx->vregs[def]]
|
||||
&& ctx->live_intervals[ctx->vregs[def]]->stack_spill_pos != -1) {
|
||||
@ -8596,7 +8596,7 @@ next_block:;
|
||||
c = '\b';
|
||||
} else if (str[i+1] == 'e') {
|
||||
i++;
|
||||
c = '\e';
|
||||
c = 27; /* '\e'; */
|
||||
} else if (str[i+1] == 'f') {
|
||||
i++;
|
||||
c = '\f';
|
||||
|
Loading…
x
Reference in New Issue
Block a user