[PATCH] D21137: Instcombile min/max intrinsics calls

escha via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 8 08:25:20 PDT 2016


escha added a subscriber: escha.
escha added a comment.

Counterexample:

x = NaN

y = 0
-----

fmin(x, fmax(x, y)) -> x ?
fmin(x, fmax(NaN, 0)) -> x ?
fmin(NaN, 0) -> x ?
fmin(NaN, 0) -> 0
0 != x


Repository:
  rL LLVM

http://reviews.llvm.org/D21137





More information about the llvm-commits mailing list