[llvm-commits] CVS: llvm/include/llvm/Pass.h
Misha Brukman
brukman at cs.uiuc.edu
Mon Aug 18 09:28:04 PDT 2003
Changes in directory llvm/include/llvm:
Pass.h updated: 1.36 -> 1.37
---
Log message:
Spell `necessary' correctly.
---
Diffs of the changes:
Index: llvm/include/llvm/Pass.h
diff -u llvm/include/llvm/Pass.h:1.36 llvm/include/llvm/Pass.h:1.37
--- llvm/include/llvm/Pass.h:1.36 Fri Jul 25 12:58:38 2003
+++ llvm/include/llvm/Pass.h Mon Aug 18 09:27:03 2003
@@ -81,7 +81,7 @@
/// print - Print out the internal state of the pass. This is called by
/// Analyze to print out the contents of an analysis. Otherwise it is not
- /// neccesary to implement this method. Beware that the module pointer MAY be
+ /// necessary to implement this method. Beware that the module pointer MAY be
/// null. This automatically forwards to a virtual function that does not
/// provide the Module* in case the analysis doesn't need it it can just be
/// ignored.
@@ -239,7 +239,7 @@
///
struct FunctionPass : public Pass {
/// doInitialization - Virtual method overridden by subclasses to do
- /// any neccesary per-module initialization.
+ /// any necessary per-module initialization.
///
virtual bool doInitialization(Module &M) { return false; }
@@ -285,12 +285,12 @@
///
struct BasicBlockPass : public FunctionPass {
/// doInitialization - Virtual method overridden by subclasses to do
- /// any neccesary per-module initialization.
+ /// any necessary per-module initialization.
///
virtual bool doInitialization(Module &M) { return false; }
/// doInitialization - Virtual method overridden by BasicBlockPass subclasses
- /// to do any neccesary per-function initialization.
+ /// to do any necessary per-function initialization.
///
virtual bool doInitialization(Function &F) { return false; }
More information about the llvm-commits
mailing list