diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-11 22:48:20 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-11 22:48:20 +0000 |
commit | 3cdb9e6af14775c1fa6329e9d2b4599e857beb1e (patch) | |
tree | 5d1700fbc53b4ed339351c094c6b4a4fcc64f160 /include/llvm/Analysis | |
parent | 1fc34bc02d40d5f55a5d9f8ed5ce32bdeb533491 (diff) | |
download | external_llvm-3cdb9e6af14775c1fa6329e9d2b4599e857beb1e.zip external_llvm-3cdb9e6af14775c1fa6329e9d2b4599e857beb1e.tar.gz external_llvm-3cdb9e6af14775c1fa6329e9d2b4599e857beb1e.tar.bz2 |
Fix typos in comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53487 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r-- | include/llvm/Analysis/LoopPass.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Analysis/LoopPass.h b/include/llvm/Analysis/LoopPass.h index c0cdce2..ef7c713 100644 --- a/include/llvm/Analysis/LoopPass.h +++ b/include/llvm/Analysis/LoopPass.h @@ -32,7 +32,7 @@ class LoopPass : public Pass { explicit LoopPass(intptr_t pid) : Pass(pid) {} // runOnLoop - This method should be implemented by the subclass to perform - // whatever action is necessary for the specfied Loop. + // whatever action is necessary for the specified Loop. virtual bool runOnLoop (Loop *L, LPPassManager &LPM) = 0; virtual bool runOnFunctionBody (Function &F, LPPassManager &LPM) { return false; @@ -68,10 +68,10 @@ class LoopPass : public Pass { /// SimpleAnalysis - Provides simple interface to update analysis info /// maintained by various passes. Note, if required this interface can /// be extracted into a separate abstract class but it would require - /// additional use of multiple inheritance in Pass class hierarcy, someting + /// additional use of multiple inheritance in Pass class hierarcy, something /// we are trying to avoid. - /// Each loop pass can override these simple analysis hookss to update + /// Each loop pass can override these simple analysis hooks to update /// desired analysis information. /// cloneBasicBlockAnalysis - Clone analysis info associated with basic block. virtual void cloneBasicBlockAnalysis(BasicBlock *F, BasicBlock *T, Loop *L) {} @@ -134,7 +134,7 @@ public: /// SimpleAnalysis - Provides simple interface to update analysis info /// maintained by various passes. Note, if required this interface can /// be extracted into a separate abstract class but it would require - /// additional use of multiple inheritance in Pass class hierarcy, someting + /// additional use of multiple inheritance in Pass class hierarcy, something /// we are trying to avoid. /// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for |