[DAGCombiner] Remove non-ascii character and reflow comment.

llvm-svn: 296690
This commit is contained in:
Benjamin Kramer 2017-03-01 22:10:43 +00:00
parent e5e320de06
commit 0e429606b0
1 changed files with 4 additions and 5 deletions

View File

@ -12622,11 +12622,10 @@ SDValue DAGCombiner::visitSTORE(SDNode *N) {
Value, Value,
APInt::getLowBitsSet(Value.getScalarValueSizeInBits(), APInt::getLowBitsSet(Value.getScalarValueSizeInBits(),
ST->getMemoryVT().getScalarSizeInBits()))) { ST->getMemoryVT().getScalarSizeInBits()))) {
// Re-visit the store if anything changed and the store hasn't // Re-visit the store if anything changed and the store hasn't been merged
// been merged with another node (N is deleted); // with another node (N is deleted) SimplifyDemandedBits will add Value's
// SimplifyDemandedBits will add Value's node back to the // node back to the worklist if necessary, but we also need to re-visit
// worklist if necessary, but we also need to re-visit the Store // the Store node itself.
// node itself.
if (N->getOpcode() != ISD::DELETED_NODE) if (N->getOpcode() != ISD::DELETED_NODE)
AddToWorklist(N); AddToWorklist(N);
return SDValue(N, 0); return SDValue(N, 0);