summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2008-08-08 19:39:37 +0000
committerEric Christopher <echristo@apple.com>2008-08-08 19:39:37 +0000
commit7a61d701c0870642e075e90b6a1ad03a8ac9bc67 (patch)
treee0930f7b8a66648b8a93e802cd415f24bdf3891f /examples
parentd9cc749318cc9ab4f36efe8a44201a72adbda2b2 (diff)
downloadllvm-7a61d701c0870642e075e90b6a1ad03a8ac9bc67.tar.gz
llvm-7a61d701c0870642e075e90b6a1ad03a8ac9bc67.tar.bz2
llvm-7a61d701c0870642e075e90b6a1ad03a8ac9bc67.tar.xz
Have IRBuilder take a template argument on whether or not to preserve
names. This can save a lot of allocations if you aren't going to be looking at the output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54546 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/BrainF/BrainF.cpp2
-rw-r--r--examples/BrainF/BrainF.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/BrainF/BrainF.cpp b/examples/BrainF/BrainF.cpp
index a79c44ef0f..f3d66d9f18 100644
--- a/examples/BrainF/BrainF.cpp
+++ b/examples/BrainF/BrainF.cpp
@@ -71,7 +71,7 @@ void BrainF::header() {
brainf_func = cast<Function>(module->
getOrInsertFunction("brainf", Type::VoidTy, NULL));
- builder = new IRBuilder(BasicBlock::Create(label, brainf_func));
+ builder = new IRBuilder<>(BasicBlock::Create(label, brainf_func));
//%arr = malloc i8, i32 %d
ConstantInt *val_mem = ConstantInt::get(APInt(32, memtotal));
diff --git a/examples/BrainF/BrainF.h b/examples/BrainF/BrainF.h
index e6aef82095..06c00ae4df 100644
--- a/examples/BrainF/BrainF.h
+++ b/examples/BrainF/BrainF.h
@@ -84,7 +84,7 @@ class BrainF {
BasicBlock *aberrorbb;
/// Variables
- IRBuilder *builder;
+ IRBuilder<> *builder;
Value *curhead;
};