[llvm] r296690 - [DAGCombiner] Remove non-ascii character and reflow comment.
Benjamin Kramer via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 1 14:10:44 PST 2017
Author: d0k
Date: Wed Mar 1 16:10:43 2017
New Revision: 296690
URL: http://llvm.org/viewvc/llvm-project?rev=296690&view=rev
Log:
[DAGCombiner] Remove non-ascii character and reflow comment.
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp?rev=296690&r1=296689&r2=296690&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp Wed Mar 1 16:10:43 2017
@@ -12622,11 +12622,10 @@ SDValue DAGCombiner::visitSTORE(SDNode *
Value,
APInt::getLowBitsSet(Value.getScalarValueSizeInBits(),
ST->getMemoryVT().getScalarSizeInBits()))) {
- // Re-visit the store if anything changed and the store hasn't
- // been merged with another node (N is deleted);
- // SimplifyDemandedBits will add Value's node back to the
- // worklist if necessary, but we also need to re-visit the Store
- // node itself.
+ // Re-visit the store if anything changed and the store hasn't been merged
+ // with another node (N is deleted) SimplifyDemandedBits will add Value's
+ // node back to the worklist if necessary, but we also need to re-visit
+ // the Store node itself.
if (N->getOpcode() != ISD::DELETED_NODE)
AddToWorklist(N);
return SDValue(N, 0);
More information about the llvm-commits
mailing list