From 0e429606b0d8e4b0e5eda4e543c6b7419a511728 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Wed, 1 Mar 2017 22:10:43 +0000 Subject: [PATCH] [DAGCombiner] Remove non-ascii character and reflow comment. llvm-svn: 296690 --- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 9b467d20e55f..1e902bac94d1 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -12622,11 +12622,10 @@ SDValue DAGCombiner::visitSTORE(SDNode *N) { 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);