From 850b520114dd6bd86fc8741201b9beea88f96599 Mon Sep 17 00:00:00 2001 From: Peter Zotov Date: Tue, 12 Nov 2013 20:55:42 +0000 Subject: [OCaml] Fix a typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194508 91177308-0d34-0410-b5e6-96231b3b80d8 --- bindings/ocaml/llvm/llvm_ocaml.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'bindings') diff --git a/bindings/ocaml/llvm/llvm_ocaml.c b/bindings/ocaml/llvm/llvm_ocaml.c index 6134bfa6d3..387f6605e8 100644 --- a/bindings/ocaml/llvm/llvm_ocaml.c +++ b/bindings/ocaml/llvm/llvm_ocaml.c @@ -528,14 +528,14 @@ CAMLprim value llvm_dump_value(LLVMValueRef Val) { } /* llvalue -> string */ -CAMLprim value llvm_string_of_llvalue(LLVMTypeRef M) { - char* TypeCStr; - TypeCStr = LLVMPrintValueToString(M); +CAMLprim value llvm_string_of_llvalue(LLVMValueRef M) { + char* ValueCStr; + ValueCStr = LLVMPrintValueToString(M); - value TypeStr = caml_copy_string(TypeCStr); - LLVMDisposeMessage(TypeCStr); + value ValueStr = caml_copy_string(ValueCStr); + LLVMDisposeMessage(ValueCStr); - return TypeStr; + return ValueStr; } /* llvalue -> llvalue -> unit */ -- cgit v1.2.3