From 7557d94bd8d92e486084074e1017eb33149f9156 Mon Sep 17 00:00:00 2001 From: Xiang1 Zhang Date: Mon, 12 Dec 2022 11:24:41 +0800 Subject: [PATCH] [NFC] Update comment for TRUNC followed by a masked store --- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 6d76680..948ddc6 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -11030,7 +11030,7 @@ SDValue DAGCombiner::visitMSTORE(SDNode *N) { // If this is a TRUNC followed by a masked store, fold this into a masked // truncating store. We can do this even if this is already a masked - // truncstore or a compress store. + // truncstore. // TODO: Try combine to masked compress store if possiable. if ((Value.getOpcode() == ISD::TRUNCATE) && Value->hasOneUse() && MST->isUnindexed() && !MST->isCompressingStore() && -- 2.7.4