From: Chris Lattner Date: Mon, 20 Sep 2004 04:36:29 +0000 (+0000) Subject: 'Pass' should now not be derived from by clients. Instead, they should derive X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f627892e26002025396d2d09bc593e42eee56a24;p=oota-llvm.git 'Pass' should now not be derived from by clients. Instead, they should derive from ModulePass. Instead of implementing Pass::run, then should implement ModulePass::runOnModule. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16430 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 0cc779243e4..0e52fe62224 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -23,9 +23,9 @@
  • Pass classes and requirements