Browse Source

Remove debug code

gingerBill 7 years ago
parent
commit
39e9b50482
1 changed files with 0 additions and 4 deletions
  1. 0 4
      src/ir.cpp

+ 0 - 4
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;