aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Henriksen <gordonhenriksen@mac.com>2007-09-27 02:47:27 +0000
committerGordon Henriksen <gordonhenriksen@mac.com>2007-09-27 02:47:27 +0000
commit06737056944683c6b02c405d710de9fd9b0f0e69 (patch)
tree9ad1a2dae5eb607789b8ffb398f21ccc3e763e65
parent6e4c46cea5daef8bc807a36ce2ab9bb7f9855b67 (diff)
Remove debugging.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42385 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--bindings/ocaml/llvm/llvm_ocaml.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/bindings/ocaml/llvm/llvm_ocaml.c b/bindings/ocaml/llvm/llvm_ocaml.c
index ffa872da6b..f53ad3c6d3 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 <stdio.h>
-#include <string.h>
/*===-- 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;