From 04a0e5050f89419a4128753b89a0818be8b8c1cd Mon Sep 17 00:00:00 2001 From: Peter Zotov Date: Tue, 5 Nov 2013 09:13:46 +0000 Subject: [PATCH] [OCaml] Properly tag the custom operations of Llvm.llbuilder All other custom operations tags have LLVM prefix. llvm-svn: 194058 --- llvm/bindings/ocaml/llvm/llvm_ocaml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/bindings/ocaml/llvm/llvm_ocaml.c b/llvm/bindings/ocaml/llvm/llvm_ocaml.c index ecdcb2f0538d..927432e2479b 100644 --- a/llvm/bindings/ocaml/llvm/llvm_ocaml.c +++ b/llvm/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,