From 172c36a100db518c7e09594bd5a5535a10dc4dd5 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Thu, 25 Jun 2020 11:52:55 +0100 Subject: [PATCH] Fix typos in CodeGenPrepare::splitLargeGEPOffsets comments. --- llvm/lib/CodeGen/CodeGenPrepare.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp index 71a846e..751cc10 100644 --- a/llvm/lib/CodeGen/CodeGenPrepare.cpp +++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp @@ -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; -- 2.7.4