summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Artigas <partigas@apple.com>2012-11-27 17:39:20 +0000
committerPedro Artigas <partigas@apple.com>2012-11-27 17:39:20 +0000
commit4bfea7685d6ca28178f18ea27b19f50524ac677e (patch)
tree643de8864722565a08952245f8a41f910a26775b
parent34a9d4b3b9b7858b729a1af67afa721c048fe5e7 (diff)
downloadllvm-4bfea7685d6ca28178f18ea27b19f50524ac677e.tar.gz
llvm-4bfea7685d6ca28178f18ea27b19f50524ac677e.tar.bz2
llvm-4bfea7685d6ca28178f18ea27b19f50524ac677e.tar.xz
Test commit only modifying comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168709 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Pass.h6
1 files 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; }