Skip to content

WIP: min/max primops

Andreas Klebinger requested to merge AndreasK/ghc:minmax into master

Implement min and max primops over Int/Word and their sized variants.

This can be done more efficiently on x86 using cmov, on other backends it still compiles as branching code.

Merge request reports