aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2017-11-07 23:09:05 +0000
committergingerBill <bill@gingerbill.org>2017-11-07 23:09:05 +0000
commit39e9b504828f5c15e93f97790f8f897686c3df3d (patch)
tree7f130aa39293e38ad55ca195aaa54e8a914e4846 /src/ir.cpp
parent30adb9c77001dd7a472212cb4b713dabd8a41564 (diff)
Remove debug code
Diffstat (limited to 'src/ir.cpp')
-rw-r--r--src/ir.cpp4
1 files changed, 0 insertions, 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;