]> granicus.if.org Git - llvm/commitdiff
[SelectionDAGBuilder] Fix typo in comment. NFC
authorCraig Topper <craig.topper@intel.com>
Tue, 27 Aug 2019 06:38:51 +0000 (06:38 +0000)
committerCraig Topper <craig.topper@intel.com>
Tue, 27 Aug 2019 06:38:51 +0000 (06:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370017 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

index bacc8ff82ee5390b468a1cc0646a28a368fc4246..fde3d97ac8eda70a0778f027cfe4915cf7b22915 100644 (file)
@@ -3873,7 +3873,7 @@ void SelectionDAGBuilder::visitGetElementPtr(const User &I) {
           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())