Draft: add support for conditional assignment (branchless code) (fix #19448)
Compare changes
This MR adds support for branchless assignments in Cmm and in the X86 ncg backend. Fix #19448.
foo :: Bool -> Int
foo x = case x of
True -> 10
False -> 27