From: Craig Topper Date: Sat, 11 Feb 2023 20:30:32 +0000 (-0800) Subject: [RISCV] Fix mistake in comment. NFC X-Git-Tag: upstream/17.0.6~17826 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e772e12d10e046ebc40dc37a6b0c1f152c9f38f;p=platform%2Fupstream%2Fllvm.git [RISCV] Fix mistake in comment. NFC --- diff --git a/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp b/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp index 82a3458..e48c1a7 100644 --- a/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp +++ b/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp @@ -830,7 +830,7 @@ void RISCVDAGToDAGISel::Select(SDNode *Node) { return; } - // Only do the remaining transforms if the shift has one use. + // Only do the remaining transforms if the AND has one use. if (!N0.hasOneUse()) break;