diff options
author | Peter Zotov <whitequark@whitequark.org> | 2013-11-05 09:13:46 +0000 |
---|---|---|
committer | Peter Zotov <whitequark@whitequark.org> | 2013-11-05 09:13:46 +0000 |
commit | 19648c00d66d5fc35c7954faa0bc63a34f68cb9d (patch) | |
tree | 4aa27057b586d35a4885258b3b437dcbbbd5cc7f /bindings | |
parent | 9a62ec7308510efcd5365ef84f8c539016110698 (diff) | |
download | external_llvm-19648c00d66d5fc35c7954faa0bc63a34f68cb9d.zip external_llvm-19648c00d66d5fc35c7954faa0bc63a34f68cb9d.tar.gz external_llvm-19648c00d66d5fc35c7954faa0bc63a34f68cb9d.tar.bz2 |
[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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ocaml/llvm/llvm_ocaml.c b/bindings/ocaml/llvm/llvm_ocaml.c index ecdcb2f..927432e 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, |