fix typo: than -> then
authorKay Tiong Khoo <kkhoo@perfwizard.com>
Mon, 23 Sep 2013 18:43:51 +0000 (18:43 +0000)
committerKay Tiong Khoo <kkhoo@perfwizard.com>
Mon, 23 Sep 2013 18:43:51 +0000 (18:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191214 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/DAGCombiner.cpp

index b355cc9a6483a3efcc8756157ce648fb14561017..8b884d52ea98962516264822f13c86fe676f7a1c 100644 (file)
@@ -3114,7 +3114,7 @@ SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
   SDValue BSwap = DAG.getNode(ISD::BSWAP, SDLoc(N), VT,
                               SDValue(Parts[0],0));
 
-  // Result of the bswap should be rotated by 16. If it's not legal, than
+  // Result of the bswap should be rotated by 16. If it's not legal, then
   // do  (x << 16) | (x >> 16).
   SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
   if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))