From: Chris Lattner Date: Wed, 17 Mar 2004 21:33:32 +0000 (+0000) Subject: Fix a tag-o X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a577630ec0b692e1691dd209157b824c60258fcf;p=oota-llvm.git Fix a tag-o git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12477 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index d4df8476f65..ac9edea39ae 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -912,7 +912,7 @@ method. It takes a single template argument that specifies which pass class you want, and returns a reference to that pass. For example:

-   bool LICM::runOnFunction(Function &F) {
+   bool LICM::runOnFunction(Function &F) {
      LoopInfo &LI = getAnalysis<LoopInfo>();
      ...
    }