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 | bfdf23f07c73d29bddadb54a60316093478b5b2e (patch) | |
| tree | 5de81c88d4cec980433f7749a1341accd18f379d /llvm/docs/tutorial/JITTutorial1.html | |
| parent | a09ba46ee391cb5ea8c667fbd29b8d3017d9e06e (diff) | |
| download | bcm5719-llvm-bfdf23f07c73d29bddadb54a60316093478b5b2e.tar.gz bcm5719-llvm-bfdf23f07c73d29bddadb54a60316093478b5b2e.zip | |
Fix exaples using IRBuilder. Thanks, Quadrescence and Glip7 from IRC!
llvm-svn: 66687
Diffstat (limited to 'llvm/docs/tutorial/JITTutorial1.html')
| -rw-r--r-- | llvm/docs/tutorial/JITTutorial1.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/JITTutorial1.html b/llvm/docs/tutorial/JITTutorial1.html index 3f0e7c18649..4aec470c7a9 100644 --- a/llvm/docs/tutorial/JITTutorial1.html +++ b/llvm/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> |

