commit | 465becf481092f18c75459f1975f8faaf58aa0c0 | [log] [tgz] |
---|---|---|
author | Bill Wendling <isanbard@gmail.com> | Wed Dec 07 18:02:44 2011 +0000 |
committer | Bill Wendling <isanbard@gmail.com> | Wed Dec 07 18:02:44 2011 +0000 |
tree | 2366e6d01e235058951982b4f8189b4120e493fe | |
parent | 470855b24ff4e82360ce1f84a1088332f3b4c8ea [diff] [blame] |
Correct initializer in example. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146041 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 66b98b6..d508a80 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html
@@ -284,7 +284,7 @@ <div class="doc_code"> <pre> static char ID; - Hello() : FunctionPass(ID) {} + Hello() : FunctionPass(&ID) {} </pre> </div>