diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-03-16 03:54:50 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-03-16 03:54:50 +0000 |
commit | fb215b936df0034f9030e921c0c054ab11470762 (patch) | |
tree | 5c7efca5c4e81e3427c687eac9da9b7a5d56aded | |
parent | 9110286da14fc9dab998605c590e2ce5ac43308c (diff) |
Fix grammar wrt apostrophe's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20635 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Pass.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h index e6083a3ca8..c583f84b42 100644 --- a/include/llvm/Pass.h +++ b/include/llvm/Pass.h @@ -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 @@ inline std::ostream &operator<<(std::ostream &OS, const Pass &P) { //===----------------------------------------------------------------------===// /// 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 @@ private: /// 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 |