[LibCallSimplfier] use instruction-level fast-math-flags for fmin/fmax transforms
[oota-llvm.git] / test / Transforms / InstCombine / fast-math.ll
2016-01-05 Sanjay Patel[LibCallSimplfier] use instruction-level fast-math...
2015-12-14 Sanjay Pateladd fast-math-flags to 'call' instructions (PR21290)
2015-08-16 Sanjay Pateltransform fmin/fmax calls when possible (PR24314)
2015-03-05 Michael Kuperstein[InstCombine] Fix an assertion when fmul has a Constant...
2014-12-31 Sanjay PatelInstCombine: fsub nsz 0, X ==> fsub nsz -0.0, X
2014-12-19 Sanjay Pateluse -0.0 when creating an fneg instruction
2014-10-16 Sanjay Patelfold: sqrt(x * x * y) -> fabs(x) * sqrt(y)
2014-01-19 Benjamin KramerInstCombine: Refactor fmul/fdiv combines to handle...
2014-01-18 Owen AndersonFix more instances of dropped fast math flags when...
2014-01-16 Owen AndersonFix two cases where we could lose fast math flags when...
2013-09-19 Shuxin Yang[Fast-math] Disable "(C1/X)*C2 => (C1*C2)/X" if C1...
2013-07-14 Stephen LinUpdate Transforms tests to use CHECK-LABEL for easier...
2013-03-25 Shuxin YangFix a bug in fast-math fadd/fsub simplification.
2013-03-14 Shuxin YangPerform factorization as a last resort of unsafe fadd...
2013-02-28 Quentin ColombetFix a bug in instcombine for fmul in fast math mode.
2013-02-07 Michael IlsemanPreserve fast-math flags after reassociation and commut...
2013-02-07 Michael Ilsemanwhitespace
2013-01-15 Shuxin Yang1. Hoist minus sign as high as possible in an attempt...
2013-01-14 Shuxin YangThis change is to implement following rules under the...
2013-01-09 Shuxin YangConsider expression "0.0 - X" as the negation of X if
2013-01-07 Shuxin YangThis change is to implement following rules:
2012-12-18 Shuxin Yangrdar://12801297
2012-12-14 Shuxin Yangrdar://12753946
2012-11-29 Shuxin Yangfix a typo
2012-11-29 Shuxin YangInstruction::isAssociative() returns true for fmul...