strip unylikely and just translate the inner value

This commit is contained in:
bit-aloo
2025-08-13 22:46:31 +05:30
parent e72097e2b7
commit eda3a82306

View File

@@ -1859,11 +1859,10 @@ pub fn translate_expr(
start_reg,
resolver,
)?;
program.emit_insn(Insn::Function {
constant_mask: 0,
start_reg,
dest: target_register,
func: func_ctx,
program.emit_insn(Insn::Copy {
src_reg: start_reg,
dst_reg: target_register,
extra_amount: 0,
});
Ok(target_register)
}