From d8279c440654a17e3035e42c541982e22250cb0a Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Thu, 11 Sep 2003 15:32:37 +0000 Subject: [PATCH] Spell `definite' correctly. llvm-svn: 8467 --- lib/Transforms/Scalar/LICM.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp index 416c83e357e..7ad000521e9 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...