forked from OSchip/llvm-project
Fixed logic to enable complex FMA formation.
llvm-svn: 235508
This commit is contained in:
parent
1d67713b44
commit
c587bee405
|
@ -7164,7 +7164,7 @@ SDValue DAGCombiner::visitFADDForFMACombine(SDNode *N) {
|
|||
N0));
|
||||
}
|
||||
|
||||
if (LookThroughFPExt) {
|
||||
if (UnsafeFPMath && LookThroughFPExt) {
|
||||
// fold (fadd (fma x, y, (fpext (fmul u, v))), z)
|
||||
// -> (fma x, y, (fma (fpext u), (fpext v), z))
|
||||
auto FoldFAddFMAFPExtFMul = [&] (
|
||||
|
@ -7415,7 +7415,7 @@ SDValue DAGCombiner::visitFSUBForFMACombine(SDNode *N) {
|
|||
N21, N0));
|
||||
}
|
||||
|
||||
if (LookThroughFPExt) {
|
||||
if (UnsafeFPMath && LookThroughFPExt) {
|
||||
// fold (fsub (fma x, y, (fpext (fmul u, v))), z)
|
||||
// -> (fma x, y (fma (fpext u), (fpext v), (fneg z)))
|
||||
if (N0.getOpcode() == PreferredFusedOpcode) {
|
||||
|
|
Loading…
Reference in New Issue