From 550211711acc12a470a66cf55147796f61e923cd Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 18 May 2007 05:38:44 +0000 Subject: [PATCH] validation fix git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37206 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/WritingAnLLVMPass.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index ca6c4ad4519..925d9811a4e 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -312,7 +312,7 @@ argument "hello", and a name "Hello World Pass".

struct Hello : public FunctionPass { static char ID; - Hello() : FunctionPass((intptr_t)&ID) {} + Hello() : FunctionPass((intptr_t)&ID) {} virtual bool runOnFunction(Function &F) { llvm::cerr << "Hello: " << F.getName() << "\n";