From 26e5a309eb24bec7d7177131b5f2730671d84d55 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Wed, 25 Jul 2007 21:05:39 +0000 Subject: [PATCH] Fix example code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40493 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/WritingAnLLVMPass.html | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index c967000a9e0..58bea1a0cad 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -320,6 +320,7 @@ argument "hello", and a name "Hello World Pass".

} }; + char Hello::ID = 0; RegisterPass<Hello> X("hello", "Hello World Pass"); }