Details
Details
- Reviewers
tlively luke - Commits
- rG28ee6040710f: [WebAssembly] pmin/pmax fixes
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Yes, pmin is rhs < lhs ? rhs : lhs and pmax is lhs < rhs ? rhs : lhs, so if either input is NaN, the result for either operation should be lhs. IIUC, before this patch NaN inputs would result in rhs instead.