[OCaml] Properly tag the custom operations of Llvm.llbuilder
authorPeter Zotov <whitequark@whitequark.org>
Tue, 5 Nov 2013 09:13:46 +0000 (09:13 +0000)
committerPeter Zotov <whitequark@whitequark.org>
Tue, 5 Nov 2013 09:13:46 +0000 (09:13 +0000)
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

bindings/ocaml/llvm/llvm_ocaml.c

index ecdcb2f0538d5c8fbda2ca47071dbeedd058497d..927432e2479b6933f879ae968f5cc39430ffd14b 100644 (file)
@@ -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,