summaryrefslogtreecommitdiff
path: root/docs/tutorial/LangImpl4.html
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-03-11 19:51:07 +0000
committerGabor Greif <ggreif@gmail.com>2009-03-11 19:51:07 +0000
commitd6c1ed08f69eb1fb3bec7cba6bee866dec5f18f7 (patch)
treebc116bdbd3e688b979efdddded09355853c484d8 /docs/tutorial/LangImpl4.html
parentad9d21a9527ab8a236e11b6f83bbf67a7a97406d (diff)
downloadllvm-d6c1ed08f69eb1fb3bec7cba6bee866dec5f18f7.tar.gz
llvm-d6c1ed08f69eb1fb3bec7cba6bee866dec5f18f7.tar.bz2
llvm-d6c1ed08f69eb1fb3bec7cba6bee866dec5f18f7.tar.xz
Fix exaples using IRBuilder. Thanks, Quadrescence and Glip7 from IRC!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66687 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/LangImpl4.html')
-rw-r--r--docs/tutorial/LangImpl4.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/LangImpl4.html b/docs/tutorial/LangImpl4.html
index 95a8b6dd6a..7e1fcfa0ff 100644
--- a/docs/tutorial/LangImpl4.html
+++ b/docs/tutorial/LangImpl4.html
@@ -861,7 +861,7 @@ static PrototypeAST *ParseExtern() {
//===----------------------------------------------------------------------===//
static Module *TheModule;
-static IRBuilder Builder;
+static IRBuilder&lt;&gt; Builder;
static std::map&lt;std::string, Value*&gt; NamedValues;
static FunctionPassManager *TheFPM;