[llvm] r194058 - [OCaml] Properly tag the custom operations of Llvm.llbuilder
Peter Zotov
whitequark at whitequark.org
Tue Nov 5 01:13:47 PST 2013
Author: whitequark
Date: Tue Nov 5 03:13:46 2013
New Revision: 194058
URL: http://llvm.org/viewvc/llvm-project?rev=194058&view=rev
Log:
[OCaml] Properly tag the custom operations of Llvm.llbuilder
All other custom operations tags have LLVM prefix.
Modified:
llvm/trunk/bindings/ocaml/llvm/llvm_ocaml.c
Modified: llvm/trunk/bindings/ocaml/llvm/llvm_ocaml.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/ocaml/llvm/llvm_ocaml.c?rev=194058&r1=194057&r2=194058&view=diff
==============================================================================
--- llvm/trunk/bindings/ocaml/llvm/llvm_ocaml.c (original)
+++ llvm/trunk/bindings/ocaml/llvm/llvm_ocaml.c Tue Nov 5 03:13:46 2013
@@ -1387,7 +1387,7 @@ static void llvm_finalize_builder(value
}
static struct custom_operations builder_ops = {
- (char *) "IRBuilder",
+ (char *) "LLVMIRBuilder",
llvm_finalize_builder,
custom_compare_default,
custom_hash_default,
More information about the llvm-commits
mailing list