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";