mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
Remove debugging.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42385 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6e4c46cea5
commit
0673705694
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user