mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 23:32:27 +00:00
Make this comment more closely reflect the code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78569 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5743a3f201
commit
eb1fedc62d
@ -4061,7 +4061,7 @@ SDValue DAGCombiner::visitFMUL(SDNode *N) {
|
||||
// fold (fmul X, 2.0) -> (fadd X, X)
|
||||
if (N1CFP && N1CFP->isExactlyValue(+2.0))
|
||||
return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
|
||||
// fold (fmul X, (fneg 1.0)) -> (fneg X)
|
||||
// fold (fmul X, -1.0) -> (fneg X)
|
||||
if (N1CFP && N1CFP->isExactlyValue(-1.0))
|
||||
if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
|
||||
return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user