From 39e9b504828f5c15e93f97790f8f897686c3df3d Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 7 Nov 2017 23:09:05 +0000 Subject: [PATCH] Remove debug code --- src/ir.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ir.cpp b/src/ir.cpp index 03a29e2f8..781021d4a 100644 --- a/src/ir.cpp +++ b/src/ir.cpp @@ -3230,11 +3230,7 @@ irValue *ir_emit_conv(irProcedure *proc, irValue *value, Type *t) { #if defined(ALLOW_ARRAY_PROGRAMMING) if (is_type_array(dst)) { Type *elem = dst->Array.elem; - bool is_ta = is_type_array(elem); - - gb_printf("%s\n", type_to_string(ir_type(value))); irValue *e = ir_emit_conv(proc, value, elem); - gb_printf("%s\n", type_to_string(elem)); irValue *v = ir_add_local_generated(proc, t); isize index_count = dst->Array.count;