summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorPeter Zotov <whitequark@whitequark.org>2013-11-05 09:13:46 +0000
committerPeter Zotov <whitequark@whitequark.org>2013-11-05 09:13:46 +0000
commit19648c00d66d5fc35c7954faa0bc63a34f68cb9d (patch)
tree4aa27057b586d35a4885258b3b437dcbbbd5cc7f /bindings
parent9a62ec7308510efcd5365ef84f8c539016110698 (diff)
downloadllvm-19648c00d66d5fc35c7954faa0bc63a34f68cb9d.tar.gz
llvm-19648c00d66d5fc35c7954faa0bc63a34f68cb9d.tar.bz2
llvm-19648c00d66d5fc35c7954faa0bc63a34f68cb9d.tar.xz
[OCaml] Properly tag the custom operations of Llvm.llbuilder
All other custom operations tags have LLVM prefix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194058 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r--bindings/ocaml/llvm/llvm_ocaml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ocaml/llvm/llvm_ocaml.c b/bindings/ocaml/llvm/llvm_ocaml.c
index ecdcb2f053..927432e247 100644
--- a/bindings/ocaml/llvm/llvm_ocaml.c
+++ b/bindings/ocaml/llvm/llvm_ocaml.c
@@ -1387,7 +1387,7 @@ static void llvm_finalize_builder(value B) {
}
static struct custom_operations builder_ops = {
- (char *) "IRBuilder",
+ (char *) "LLVMIRBuilder",
llvm_finalize_builder,
custom_compare_default,
custom_hash_default,