aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/fmul.ll
AgeCommit message (Expand)Author
2016-01-30InstCombine: fabs(x) * fabs(x) -> x * xMatt Arsenault
2015-02-27[opaque pointer type] Add textual IR support for explicit type parameter to l...David Blaikie
2014-10-02Remove unused function attribute params.Sanjay Patel
2014-10-02Optimize square root squared (PR21126).Sanjay Patel
2014-01-20Fix all the remaining lost-fast-math-flags bugs I've been able to find. The ...Owen Anderson
2014-01-18InstCombine: Make the (fmul X, -1.0) -> (fsub -0.0, X) transform handle vecto...Benjamin Kramer
2014-01-16Fix a bug in InstCombine where we failed to preserve fast math flags when opt...Owen Anderson
2014-01-16Teach InstCombine that (fmul X, -1.0) can be simplified to (fneg X), which LL...Owen Anderson
2013-09-30Fix a bug in InstCombine where it attempted to cast a Value* to an Instruction*Joey Gouly
2013-07-14Update Transforms tests to use CHECK-LABEL for easier debugging. No functiona...Stephen Lin
2013-01-151. Hoist minus sign as high as possible in an attempt to revealShuxin Yang