[llvm-commits] [llvm] r130396 - /llvm/trunk/include/llvm/Pass.h

Jay Foad jay.foad at gmail.com
Thu Apr 28 02:12:47 PDT 2011


Author: foad
Date: Thu Apr 28 04:12:47 2011
New Revision: 130396

URL: http://llvm.org/viewvc/llvm-project?rev=130396&view=rev
Log:
Fix typos in comments.

Modified:
    llvm/trunk/include/llvm/Pass.h

Modified: llvm/trunk/include/llvm/Pass.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Pass.h?rev=130396&r1=130395&r2=130396&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Pass.h (original)
+++ llvm/trunk/include/llvm/Pass.h Thu Apr 28 04:12:47 2011
@@ -114,7 +114,7 @@
   void dump() const; // dump - Print to stderr.
 
   /// createPrinterPass - Get a Pass appropriate to print the IR this
-  /// pass operates one (Module, Function or MachineFunction).
+  /// pass operates on (Module, Function or MachineFunction).
   virtual Pass *createPrinterPass(raw_ostream &O,
                                   const std::string &Banner) const = 0;
 
@@ -320,7 +320,7 @@
 public:
   explicit BasicBlockPass(char &pid) : Pass(PT_BasicBlock, pid) {}
 
-  /// createPrinterPass - Get a function printer pass.
+  /// createPrinterPass - Get a basic block printer pass.
   Pass *createPrinterPass(raw_ostream &O, const std::string &Banner) const;
 
   /// doInitialization - Virtual method overridden by subclasses to do





More information about the llvm-commits mailing list