commit | a577630ec0b692e1691dd209157b824c60258fcf | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Mar 17 21:33:32 2004 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Mar 17 21:33:32 2004 +0000 |
tree | 6a28d42caa55595e473fc092c41bc40e29a80295 | |
parent | 892562779c49c09c6f4bf83ed5917bd9c7ac43b8 [diff] [blame] |
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 d4df847..ac9edea 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html
@@ -912,7 +912,7 @@ want, and returns a reference to that pass. For example:</p> <pre> - bool LICM::runOnFunction(Function &F) { + bool LICM::runOnFunction(Function &F) { LoopInfo &LI = getAnalysis<LoopInfo>(); ... }