From: Devang Patel Date: Tue, 23 Jan 2007 22:56:28 +0000 (+0000) Subject: Fix cut-n-pasto. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c20048d05ce27118c5a50fefc8829ccf12be8e38;p=oota-llvm.git Fix cut-n-pasto. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33469 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 0c362d0e7c6..a31703aa594 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -29,10 +29,10 @@
  • The CallGraphSCCPass class
  • The FunctionPass class @@ -534,14 +534,14 @@ false if they didn't.

    -  virtual bool doInitialization(Module &M);
    +  virtual bool doInitialization(CallGraph &CG);
     

    The doIninitialize method is allowed to do most of the things that @@ -573,14 +573,14 @@ otherwise.

    -  virtual bool doFinalization(Module &M);
    +  virtual bool doFinalization(CallGraph &CG);
     

    The doFinalization method is an infrequently used method that is