[llvm] r191214 - fix typo: than -> then
Kay Tiong Khoo
kkhoo at perfwizard.com
Mon Sep 23 11:43:51 PDT 2013
Author: kkhoo
Date: Mon Sep 23 13:43:51 2013
New Revision: 191214
URL: http://llvm.org/viewvc/llvm-project?rev=191214&view=rev
Log:
fix typo: than -> then
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp?rev=191214&r1=191213&r2=191214&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp Mon Sep 23 13:43:51 2013
@@ -3114,7 +3114,7 @@ SDValue DAGCombiner::MatchBSwapHWord(SDN
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))
More information about the llvm-commits
mailing list