Test commit only modifying comments
authorPedro Artigas <partigas@apple.com>
Tue, 27 Nov 2012 17:39:20 +0000 (17:39 +0000)
committerPedro Artigas <partigas@apple.com>
Tue, 27 Nov 2012 17:39:20 +0000 (17:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168709 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Pass.h

index 7b6f169666a7d23f431c113b33cee2608b0c16db..29efb321ceecf177a985bad6421daeb1d316acfe 100644 (file)
@@ -228,7 +228,7 @@ public:
   Pass *createPrinterPass(raw_ostream &O, const std::string &Banner) const;
 
   /// doInitialization - Virtual method overridden by subclasses to do
-  /// any necessary initialization.
+  /// any necessary initialization before any pass is run.
   ///
   virtual bool doInitialization()  { return false; }
 
@@ -236,8 +236,8 @@ public:
   /// being operated on.
   virtual bool runOnModule(Module &M) = 0;
 
-  /// doFinalization - Virtual method overriden by subclasses to do any post
-  /// processing needed after all passes have run.
+  /// doFinalization - Virtual method overriden by subclasses to do any
+  /// necessary clean up after all passes have run.
   ///
   virtual bool doFinalization() { return false; }