diff options
-rw-r--r-- | docs/WritingAnLLVMPass.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 1bb90f79d5..1f53f050ba 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -204,6 +204,14 @@ we are operating on <tt><a href="http://llvm.cs.uiuc.edu/doxygen/classllvm_1_1Function.html">Function</a></tt>'s.</p> <p>Next we have:</p> +<pre> +<b>using namespace llvm;</b> +</pre> +<p>... which is required because the functions from the include files +live in the llvm namespace. +</p> + +<p>Next we have:</p> <pre> <b>namespace</b> { @@ -259,6 +267,8 @@ depending on what it is to be used for. For "optimizations" we use the <b>#include</b> "<a href="http://llvm.cs.uiuc.edu/doxygen/Pass_8h-source.html">llvm/Pass.h</a>" <b>#include</b> "<a href="http://llvm.cs.uiuc.edu/doxygen/Function_8h-source.html">llvm/Function.h</a>" +<b>using namespace llvm;</b> + <b>namespace</b> { <b>struct Hello</b> : <b>public</b> <a href="#FunctionPass">FunctionPass</a> { <b>virtual bool</b> <a href="#runOnFunction">runOnFunction</a>(Function &F) { |