From e79d0df477b61d2f6b17d0514dda57ff59293922 Mon Sep 17 00:00:00 2001 From: Nirav Dave Date: Wed, 13 Mar 2019 17:44:40 +0000 Subject: [PATCH] [DAGCombiner] Fix Comment. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@356069 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 1095b413072..f6363e271a1 100644 --- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -1709,7 +1709,7 @@ SDValue DAGCombiner::visitTokenFactor(SDNode *N) { if (OptLevel == CodeGenOpt::None) return SDValue(); - // If this is used only a single token factor, we should make sure we have a + // If the sole user is a token factor, we should make sure we have a // chance to merge them together. This prevents TF chains from inhibiting // optimizations. if (N->hasOneUse() && N->use_begin()->getOpcode() == ISD::TokenFactor) -- 2.50.1