diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-07-10 20:47:39 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-07-10 20:47:39 +0000 |
commit | 10947502e5bf95be7a8438d3beb74c034c1419b2 (patch) | |
tree | 2fe3355b96674ee8a67d0b8e341c3964da77000d /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | 5a4c862a9000ab772d35b8ab5068f53055055c6e (diff) | |
download | bcm5719-llvm-10947502e5bf95be7a8438d3beb74c034c1419b2.tar.gz bcm5719-llvm-10947502e5bf95be7a8438d3beb74c034c1419b2.zip |
Remove trailing whitespac
llvm-svn: 186032
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 98806551e4d..02fdb3fd883 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -6151,7 +6151,7 @@ SDValue DAGCombiner::visitFSUB(SDNode *N) { if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI, &DAG.getTarget().Options)) return GetNegatedExpression(N11, DAG, LegalOperations); - + if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI, &DAG.getTarget().Options)) return GetNegatedExpression(N10, DAG, LegalOperations); @@ -6172,7 +6172,7 @@ SDValue DAGCombiner::visitFSUB(SDNode *N) { // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x) // Note: Commutes FSUB operands. - if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) + if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) return DAG.getNode(ISD::FMA, dl, VT, DAG.getNode(ISD::FNEG, dl, VT, N1.getOperand(0)), |