From 06737056944683c6b02c405d710de9fd9b0f0e69 Mon Sep 17 00:00:00 2001 From: Gordon Henriksen Date: Thu, 27 Sep 2007 02:47:27 +0000 Subject: [PATCH] Remove debugging. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42385 91177308-0d34-0410-b5e6-96231b3b80d8 --- bindings/ocaml/llvm/llvm_ocaml.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bindings/ocaml/llvm/llvm_ocaml.c b/bindings/ocaml/llvm/llvm_ocaml.c index ffa872da6be..f53ad3c6d34 100644 --- a/bindings/ocaml/llvm/llvm_ocaml.c +++ b/bindings/ocaml/llvm/llvm_ocaml.c @@ -21,8 +21,6 @@ #include "caml/mlvalues.h" #include "caml/memory.h" #include "llvm/Config/config.h" -#include -#include /*===-- Modules -----------------------------------------------------------===*/ @@ -477,7 +475,6 @@ CAMLprim value llvm_value_is_block(LLVMValueRef Val) { #define Builder_val(v) (*(LLVMBuilderRef *)(Data_custom_val(v))) void llvm_finalize_builder(value B) { - fprintf(stderr, "disposing builder = 0x%08x\n", (int) Builder_val(B)); LLVMDisposeBuilder(Builder_val(B)); } @@ -505,7 +502,6 @@ CAMLprim value llvm_builder_at_end(LLVMBasicBlockRef BB) { value V; LLVMBuilderRef B = LLVMCreateBuilder(); LLVMPositionBuilderAtEnd(B, BB); - fprintf(stderr, "returning builder = 0x%08x\n", (int) B); V = alloc_custom(&builder_ops, sizeof(LLVMBuilderRef), 0, 1); Builder_val(V) = B; return V; -- 2.34.1