From c20048d05ce27118c5a50fefc8829ccf12be8e38 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Tue, 23 Jan 2007 22:56:28 +0000 Subject: [PATCH] Fix cut-n-pasto. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33469 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/WritingAnLLVMPass.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 -- 2.34.1