mirror of
https://github.com/danog/ir.git
synced 2025-01-22 05:31:32 +01:00
Fix assertions
This commit is contained in:
parent
b5c827ce25
commit
b9647172c2
@ -5467,7 +5467,7 @@ static void ir_emit_bitcast(ir_ctx *ctx, ir_ref def, ir_insn *insn)
|
|||||||
IR_ASSERT(ir_type_size[dst_type] == ir_type_size[src_type]);
|
IR_ASSERT(ir_type_size[dst_type] == ir_type_size[src_type]);
|
||||||
IR_ASSERT(def_reg != IR_REG_NONE);
|
IR_ASSERT(def_reg != IR_REG_NONE);
|
||||||
if (IR_IS_TYPE_INT(src_type) && IR_IS_TYPE_INT(dst_type)) {
|
if (IR_IS_TYPE_INT(src_type) && IR_IS_TYPE_INT(dst_type)) {
|
||||||
if (ir_rule(ctx, insn->op1) & IR_FUSED) {
|
if (!IR_IS_CONST_REF(insn->op1) && (ir_rule(ctx, insn->op1) & IR_FUSED)) {
|
||||||
offset = ir_fuse_load(ctx, insn->op1, &op1_reg);
|
offset = ir_fuse_load(ctx, insn->op1, &op1_reg);
|
||||||
ir_emit_load_mem_int(ctx, dst_type, def_reg, op1_reg, offset);
|
ir_emit_load_mem_int(ctx, dst_type, def_reg, op1_reg, offset);
|
||||||
} else if (op1_reg != IR_REG_NONE) {
|
} else if (op1_reg != IR_REG_NONE) {
|
||||||
@ -5482,7 +5482,7 @@ static void ir_emit_bitcast(ir_ctx *ctx, ir_ref def, ir_insn *insn)
|
|||||||
ir_emit_load(ctx, dst_type, def_reg, insn->op1);
|
ir_emit_load(ctx, dst_type, def_reg, insn->op1);
|
||||||
}
|
}
|
||||||
} else if (IR_IS_TYPE_FP(src_type) && IR_IS_TYPE_FP(dst_type)) {
|
} else if (IR_IS_TYPE_FP(src_type) && IR_IS_TYPE_FP(dst_type)) {
|
||||||
if (ir_rule(ctx, insn->op1) & IR_FUSED) {
|
if (!IR_IS_CONST_REF(insn->op1) && (ir_rule(ctx, insn->op1) & IR_FUSED)) {
|
||||||
offset = ir_fuse_load(ctx, insn->op1, &op1_reg);
|
offset = ir_fuse_load(ctx, insn->op1, &op1_reg);
|
||||||
ir_emit_load_mem_fp(ctx, dst_type, def_reg, op1_reg, offset);
|
ir_emit_load_mem_fp(ctx, dst_type, def_reg, op1_reg, offset);
|
||||||
} else if (op1_reg != IR_REG_NONE) {
|
} else if (op1_reg != IR_REG_NONE) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user