diff options
author | Gabor Greif <ggreif@gmail.com> | 2009-03-11 19:51:07 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2009-03-11 19:51:07 +0000 |
commit | d6c1ed08f69eb1fb3bec7cba6bee866dec5f18f7 (patch) | |
tree | bc116bdbd3e688b979efdddded09355853c484d8 /docs/tutorial/JITTutorial1.html | |
parent | ad9d21a9527ab8a236e11b6f83bbf67a7a97406d (diff) |
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/JITTutorial1.html')
-rw-r--r-- | docs/tutorial/JITTutorial1.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/JITTutorial1.html b/docs/tutorial/JITTutorial1.html index 3f0e7c1864..4aec470c7a 100644 --- a/docs/tutorial/JITTutorial1.html +++ b/docs/tutorial/JITTutorial1.html @@ -153,7 +153,7 @@ function will interoperate properly with C code, which is a good thing.</p> <div class="doc_code"> <pre> BasicBlock* block = BasicBlock::Create("entry", mul_add); - IRBuilder builder(block); + IRBuilder<> builder(block); </pre> </div> |