From 79a423cfa2de75dcf89b270b4ccb0a50b0d40802 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Sun, 15 Jul 2018 17:09:35 +0000 Subject: [PATCH] [DAGCombiner] fix typo in comment; NFC llvm-svn: 337132 --- 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 2825e45..17c4832 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -8115,7 +8115,7 @@ static SDValue foldExtendedSignBitTest(SDNode *N, SelectionDAG &DAG, EVT VT = N->getValueType(0); EVT XVT = X.getValueType(); // setge X, C is canonicalized to setgt, so we do not need to match that - // pattern. The setlt sibling is folded in SimplifySelectCC() becaus it does + // pattern. The setlt sibling is folded in SimplifySelectCC() because it does // not require the 'not' op. if (CC == ISD::SETGT && isAllOnesConstant(Ones) && VT == XVT) { // Invert and smear/shift the sign bit: -- 2.7.4