summaryrefslogtreecommitdiff
path: root/include/llvm/PassManager.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-25 22:54:55 +0000
committerChris Lattner <sabre@nondot.org>2002-08-25 22:54:55 +0000
commit26199059268a05739c84ebf465fcdbf7ded861df (patch)
tree8ec9d990f4bb669601ba3d8264a774e8bdce0392 /include/llvm/PassManager.h
parent969c4ad65dd0c23b68117a08eb28f040af379b0d (diff)
downloadllvm-26199059268a05739c84ebf465fcdbf7ded861df.tar.gz
llvm-26199059268a05739c84ebf465fcdbf7ded861df.tar.bz2
llvm-26199059268a05739c84ebf465fcdbf7ded861df.tar.xz
Convert comments to Doxygen style
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/PassManager.h')
-rw-r--r--include/llvm/PassManager.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/llvm/PassManager.h b/include/llvm/PassManager.h
index c012379b5a..ae603b1828 100644
--- a/include/llvm/PassManager.h
+++ b/include/llvm/PassManager.h
@@ -20,16 +20,16 @@ public:
PassManager();
~PassManager();
- // add - Add a pass to the queue of passes to run. This passes ownership of
- // the Pass to the PassManager. When the PassManager is destroyed, the pass
- // will be destroyed as well, so there is no need to delete the pass. This
- // implies that all passes MUST be allocated with 'new'.
- //
+ /// add - Add a pass to the queue of passes to run. This passes ownership of
+ /// the Pass to the PassManager. When the PassManager is destroyed, the pass
+ /// will be destroyed as well, so there is no need to delete the pass. This
+ /// implies that all passes MUST be allocated with 'new'.
+ ///
void add(Pass *P);
- // run - Execute all of the passes scheduled for execution. Keep track of
- // whether any of the functions modifies the program, and if so, return true.
- //
+ /// run - Execute all of the passes scheduled for execution. Keep track of
+ /// whether any of the functions modifies the program, and if so, return true.
+ ///
bool run(Module &M);
};