From c971445aa4d34e707a49e6e32779bff9d13896c4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Tue, 12 Jan 2021 13:47:06 +0100 Subject: [PATCH] remove debug print --- src/emit/emit.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/emit/emit.c b/src/emit/emit.c index 64e477ba..2cc84734 100644 --- a/src/emit/emit.c +++ b/src/emit/emit.c @@ -895,8 +895,6 @@ ANN static m_bool emit_exp_call(const Emitter emit, const Exp_Call* exp_call) { if(isa(t, emit->gwion->type[et_function]) > 0) CHECK_BB(emit_exp_call1(emit, t->info->func)) else { -printf("call type %s %p\n", exp_call->func->type->name, actual_type(emit->gwion, exp_call->func->type)); -printf("call type %s %p\n", exp_call->func->type->name, exp_call->func->type); struct Op_Import opi = { .op=insert_symbol("@ctor"), .rhs=t, .data=(uintptr_t)exp_call, .pos=exp_self(exp_call)->pos, .op_type=op_exp }; CHECK_BB(op_emit(emit, &opi)) -- 2.43.0