aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-09-11 15:32:37 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-09-11 15:32:37 +0000
commit352361b409d16045e703d986aa7fd77295173ef3 (patch)
tree44503494be585ea17a06d422c323c987cdfd20d2 /lib
parent7bc439a4b6c2d99707ebabf8f9b1c13041faa6a6 (diff)
downloadexternal_llvm-352361b409d16045e703d986aa7fd77295173ef3.zip
external_llvm-352361b409d16045e703d986aa7fd77295173ef3.tar.gz
external_llvm-352361b409d16045e703d986aa7fd77295173ef3.tar.bz2
Spell `definite' correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8467 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Scalar/LICM.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp
index 416c83e..7ad0005 100644
--- a/lib/Transforms/Scalar/LICM.cpp
+++ b/lib/Transforms/Scalar/LICM.cpp
@@ -124,7 +124,7 @@ namespace {
void PromoteValuesInLoop();
/// findPromotableValuesInLoop - Check the current loop for stores to
- /// definate pointers, which are not loaded and stored through may aliases.
+ /// definite pointers, which are not loaded and stored through may aliases.
/// If these are found, create an alloca for the value, add it to the
/// PromotedValues list, and keep track of the mapping from value to
/// alloca...
@@ -409,7 +409,7 @@ void LICM::PromoteValuesInLoop() {
AA->getTargetData());
}
-/// findPromotableValuesInLoop - Check the current loop for stores to definate
+/// findPromotableValuesInLoop - Check the current loop for stores to definite
/// pointers, which are not loaded and stored through may aliases. If these are
/// found, create an alloca for the value, add it to the PromotedValues list,
/// and keep track of the mapping from value to alloca...