summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-06-04 00:15:00 +0000
committerJim Grosbach <grosbach@apple.com>2010-06-04 00:15:00 +0000
commitd089a7ac70397ea41fe6128639dc54b8e273ed60 (patch)
treeb280fc9a955917249df2f00c95ed9659193e1134 /lib
parent20af92e5b7cc2fc3dac25edf6081fd5623cd0f5d (diff)
downloadllvm-d089a7ac70397ea41fe6128639dc54b8e273ed60.tar.gz
llvm-d089a7ac70397ea41fe6128639dc54b8e273ed60.tar.bz2
llvm-d089a7ac70397ea41fe6128639dc54b8e273ed60.tar.xz
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105441 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMLoadStoreOptimizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMLoadStoreOptimizer.cpp b/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
index b325d62c89..955ab3f7e2 100644
--- a/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
+++ b/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
@@ -1423,7 +1423,7 @@ bool ARMPreAllocLoadStoreOpt::RescheduleOps(MachineBasicBlock *MBB,
std::sort(Ops.begin(), Ops.end(), OffsetCompare());
// The loads / stores of the same base are in order. Scan them from first to
- // last and check for the followins:
+ // last and check for the following:
// 1. Any def of base.
// 2. Any gaps.
while (Ops.size() > 1) {