mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 03:32:37 +00:00
Fix missing break in switch statement for deferred_in in the IR
This commit is contained in:
@@ -3035,6 +3035,7 @@ irValue *ir_emit_call(irProcedure *p, irValue *value, Array<irValue *> args, Pro
|
||||
break;
|
||||
case DeferredProcedure_in:
|
||||
result_as_args = in_args;
|
||||
break;
|
||||
case DeferredProcedure_out:
|
||||
result_as_args = ir_value_to_array(p, result);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user