aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm-c
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 /include/llvm-c
parentd9cc749318cc9ab4f36efe8a44201a72adbda2b2 (diff)
downloadexternal_llvm-7a61d701c0870642e075e90b6a1ad03a8ac9bc67.zip
external_llvm-7a61d701c0870642e075e90b6a1ad03a8ac9bc67.tar.gz
external_llvm-7a61d701c0870642e075e90b6a1ad03a8ac9bc67.tar.bz2
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 'include/llvm-c')
-rw-r--r--include/llvm-c/Core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index bbef134..188377f 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -708,7 +708,7 @@ namespace llvm {
DEFINE_ISA_CONVERSION_FUNCTIONS (Value, LLVMValueRef )
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(Module, LLVMModuleRef )
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(BasicBlock, LLVMBasicBlockRef )
- DEFINE_SIMPLE_CONVERSION_FUNCTIONS(IRBuilder, LLVMBuilderRef )
+ DEFINE_SIMPLE_CONVERSION_FUNCTIONS(IRBuilder<>, LLVMBuilderRef )
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(PATypeHolder, LLVMTypeHandleRef )
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ModuleProvider, LLVMModuleProviderRef)
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(MemoryBuffer, LLVMMemoryBufferRef )