null_eq flag disable effect of jump_if_null flag - so it makes no sense to set them both

This commit is contained in:
Nikita Sivukhin
2025-02-02 02:29:02 +04:00
parent 478ee6be8d
commit c7aed22e39

View File

@@ -85,7 +85,7 @@ macro_rules! emit_cmp_null_insn {
lhs: $lhs,
rhs: $rhs,
target_pc: $cond.jump_target_when_false,
flags: CmpInsFlags::default().jump_if_null().null_eq(),
flags: CmpInsFlags::default().null_eq(),
});
}
}};