[llvm-commits] CVS: llvm/include/llvm/Pass.h

Misha Brukman brukman at cs.uiuc.edu
Tue Mar 15 19:55:01 PST 2005



Changes in directory llvm/include/llvm:

Pass.h updated: 1.49 -> 1.50
---
Log message:

Fix grammar wrt apostrophe's


---
Diffs of the changes:  (+3 -3)

 Pass.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/include/llvm/Pass.h
diff -u llvm/include/llvm/Pass.h:1.49 llvm/include/llvm/Pass.h:1.50
--- llvm/include/llvm/Pass.h:1.49	Tue Dec  7 02:11:11 2004
+++ llvm/include/llvm/Pass.h	Tue Mar 15 21:54:50 2005
@@ -10,7 +10,7 @@
 // This file defines a base class that indicates that a specified class is a
 // transformation pass implementation.
 //
-// Pass's are designed this way so that it is possible to run passes in a cache
+// Passes are designed this way so that it is possible to run passes in a cache
 // and organizationally optimal order without having to specify it at the front
 // end.  This allows arbitrary passes to be strung together and have them
 // executed as effeciently as possible.
@@ -208,7 +208,7 @@
 
 //===----------------------------------------------------------------------===//
 /// ModulePass class - This class is used to implement unstructured
-/// interprocedural optimizations and analyses.  ModulePass's may do anything
+/// interprocedural optimizations and analyses.  ModulePasses may do anything
 /// they want to the program.
 ///
 class ModulePass : public Pass {
@@ -303,7 +303,7 @@
 ///      instruction at a time.
 ///   2. Optimizations do not modify the CFG of the contained function, or any
 ///      other basic block in the function.
-///   3. Optimizations conform to all of the constraints of FunctionPass's.
+///   3. Optimizations conform to all of the constraints of FunctionPasses.
 ///
 struct BasicBlockPass : public FunctionPass {
   /// doInitialization - Virtual method overridden by subclasses to do






More information about the llvm-commits mailing list