mirror of
https://github.com/danog/ir.git
synced 2024-11-26 12:24:56 +01:00
Fixed typo
This commit is contained in:
parent
4d2ef9401f
commit
87f2fc7f69
@ -4532,7 +4532,7 @@ static void ir_allocate_unique_spill_slots(ir_ctx *ctx)
|
||||
ctx->live_intervals[ctx->vregs[use_insn->op3]] = ival;
|
||||
ival->type = insn->type;
|
||||
ival->reg = IR_REG_NONE;
|
||||
ival->vreg = ctx->vregs[insn->op3];
|
||||
ival->vreg = ctx->vregs[use_insn->op3];
|
||||
ival->stack_spill_pos = stack_spill_pos;
|
||||
}
|
||||
}
|
||||
|
@ -7653,7 +7653,7 @@ static void ir_allocate_unique_spill_slots(ir_ctx *ctx)
|
||||
ctx->live_intervals[ctx->vregs[use_insn->op3]] = ival;
|
||||
ival->type = insn->type;
|
||||
ival->reg = IR_REG_NONE;
|
||||
ival->vreg = ctx->vregs[insn->op3];
|
||||
ival->vreg = ctx->vregs[use_insn->op3];
|
||||
ival->stack_spill_pos = stack_spill_pos;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user