From: Chris Lattner Date: Fri, 18 May 2007 05:38:44 +0000 (+0000) Subject: validation fix X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=550211711acc12a470a66cf55147796f61e923cd;p=oota-llvm.git validation fix git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37206 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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";