Fix typos in CodeGenPrepare::splitLargeGEPOffsets comments.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Thu, 25 Jun 2020 10:52:55 +0000 (11:52 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Thu, 25 Jun 2020 13:22:19 +0000 (14:22 +0100)
llvm/lib/CodeGen/CodeGenPrepare.cpp

index 71a846e..751cc10 100644 (file)
@@ -5577,9 +5577,9 @@ bool CodeGenPrepare::mergeSExts(Function &F) {
   return Changed;
 }
 
-// Spliting large data structures so that the GEPs accessing them can have
+// Splitting large data structures so that the GEPs accessing them can have
 // smaller offsets so that they can be sunk to the same blocks as their users.
-// For example, a large struct starting from %base is splitted into two parts
+// For example, a large struct starting from %base is split into two parts
 // where the second part starts from %new_base.
 //
 // Before:
@@ -5654,7 +5654,7 @@ bool CodeGenPrepare::splitLargeGEPOffsets() {
                                         GEP->getAddressSpace())) {
           // We need to create a new base if the offset to the current base is
           // too large to fit into the addressing mode. So, a very large struct
-          // may be splitted into several parts.
+          // may be split into several parts.
           BaseGEP = GEP;
           BaseOffset = Offset;
           NewBaseGEP = nullptr;