From: Roman Lebedev Date: Fri, 13 Jan 2023 18:21:06 +0000 (+0300) Subject: [NFC][DAGCombiner] Fix typo in `visitFREEZE()` X-Git-Tag: upstream/17.0.6~20985 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5ffa8c401968be7eb950a3ed186dff2e7ce1ab9e;p=platform%2Fupstream%2Fllvm.git [NFC][DAGCombiner] Fix typo in `visitFREEZE()` --- diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index b8eb279..db71328 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -14365,7 +14365,7 @@ SDValue DAGCombiner::visitFREEZE(SDNode *N) { } // NOTE: the whole op may be not guaranteed to not be undef or poison because // it could create undef or poison due to it's poison-generating flags. - // So not finding any maybe-poison flags is fine. + // So not finding any maybe-poison operands is fine. for (SDValue MaybePoisonOperand : MaybePoisonOperands) { // Don't replace every single UNDEF everywhere with frozen UNDEF, though.