[llvm] r370017 - [SelectionDAGBuilder] Fix typo in comment. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 26 23:38:51 PDT 2019


Author: ctopper
Date: Mon Aug 26 23:38:51 2019
New Revision: 370017

URL: http://llvm.org/viewvc/llvm-project?rev=370017&view=rev
Log:
[SelectionDAGBuilder] Fix typo in comment. NFC

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp?rev=370017&r1=370016&r2=370017&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp Mon Aug 26 23:38:51 2019
@@ -3873,7 +3873,7 @@ void SelectionDAGBuilder::visitGetElemen
           DAG.getConstant(Offs, dl, EVT::getVectorVT(Context, IdxTy, VectorWidth)) :
           DAG.getConstant(Offs, dl, IdxTy);
 
-        // In an inbouds GEP with an offset that is nonnegative even when
+        // In an inbounds GEP with an offset that is nonnegative even when
         // interpreted as signed, assume there is no unsigned overflow.
         SDNodeFlags Flags;
         if (Offs.isNonNegative() && cast<GEPOperator>(I).isInBounds())




More information about the llvm-commits mailing list