mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Remove debug code
This commit is contained in:
@@ -3230,11 +3230,7 @@ irValue *ir_emit_conv(irProcedure *proc, irValue *value, Type *t) {
|
|||||||
#if defined(ALLOW_ARRAY_PROGRAMMING)
|
#if defined(ALLOW_ARRAY_PROGRAMMING)
|
||||||
if (is_type_array(dst)) {
|
if (is_type_array(dst)) {
|
||||||
Type *elem = dst->Array.elem;
|
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);
|
irValue *e = ir_emit_conv(proc, value, elem);
|
||||||
gb_printf("%s\n", type_to_string(elem));
|
|
||||||
irValue *v = ir_add_local_generated(proc, t);
|
irValue *v = ir_add_local_generated(proc, t);
|
||||||
isize index_count = dst->Array.count;
|
isize index_count = dst->Array.count;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user