From 4bfea7685d6ca28178f18ea27b19f50524ac677e Mon Sep 17 00:00:00 2001 From: Pedro Artigas Date: Tue, 27 Nov 2012 17:39:20 +0000 Subject: Test commit only modifying comments git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168709 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Pass.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h index 7b6f169666..29efb321ce 100644 --- a/include/llvm/Pass.h +++ b/include/llvm/Pass.h @@ -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; } -- cgit v1.2.3