Fix typos in comments.
authorDan Gohman <gohman@apple.com>
Fri, 11 Jul 2008 22:48:20 +0000 (22:48 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 11 Jul 2008 22:48:20 +0000 (22:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53487 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/LoopPass.h

index c0cdce2f1a5f0dc9e08f4a9aadf2893d0e38ec86..ef7c71380bc6cbfadd5cc5010a8eae2cac8c73b7 100644 (file)
@@ -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