[llvm-commits] [llvm] r53487 - /llvm/trunk/include/llvm/Analysis/LoopPass.h
Dan Gohman
gohman at apple.com
Fri Jul 11 15:48:20 PDT 2008
Author: djg
Date: Fri Jul 11 17:48:20 2008
New Revision: 53487
URL: http://llvm.org/viewvc/llvm-project?rev=53487&view=rev
Log:
Fix typos in comments.
Modified:
llvm/trunk/include/llvm/Analysis/LoopPass.h
Modified: llvm/trunk/include/llvm/Analysis/LoopPass.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/LoopPass.h?rev=53487&r1=53486&r2=53487&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/LoopPass.h (original)
+++ llvm/trunk/include/llvm/Analysis/LoopPass.h Fri Jul 11 17:48:20 2008
@@ -32,7 +32,7 @@
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 @@
/// 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 @@
/// 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
More information about the llvm-commits
mailing list