diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-20 18:39:06 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-20 18:39:06 +0000 |
commit | 656304bb6c6b1b1f7711e1661fc7fade487e7ec3 (patch) | |
tree | d76a3e13263dec67345937832c00f2bdb7c87460 | |
parent | ccbe5663879aa702dfb7cc5930a7990adc1484b1 (diff) | |
download | bcm5719-llvm-656304bb6c6b1b1f7711e1661fc7fade487e7ec3.tar.gz bcm5719-llvm-656304bb6c6b1b1f7711e1661fc7fade487e7ec3.zip |
The plural of `Pass' is Passes, not Pass's.
llvm-svn: 6247
-rw-r--r-- | llvm/include/llvm/PassManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/PassManager.h b/llvm/include/llvm/PassManager.h index ae603b1828d..f67d9da1a32 100644 --- a/llvm/include/llvm/PassManager.h +++ b/llvm/include/llvm/PassManager.h @@ -1,7 +1,7 @@ //===- llvm/PassManager.h - Container for Passes -----------------*- C++ -*--=// // // This file defines the PassManager class. This class is used to hold, -// maintain, and optimize execution of Pass's. The PassManager class ensures +// maintain, and optimize execution of Passes. The PassManager class ensures // that analysis results are available before a pass runs, and that Pass's are // destroyed when the PassManager is destroyed. // |