diff options
| author | gingerBill <bill@gingerbill.org> | 2019-02-23 14:11:48 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-02-23 14:11:48 +0000 |
| commit | a07232ea6367337d785ef07a1de659c7555357bf (patch) | |
| tree | 1ed77d44211f01d584facf855008118dfd7df215 /src/ir.cpp | |
| parent | 79b585ada897169c56c7183806a9a811c96c3140 (diff) | |
Fix missing `break` in switch statement for `deferred_in` in the IR
Diffstat (limited to 'src/ir.cpp')
| -rw-r--r-- | src/ir.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ir.cpp b/src/ir.cpp index bdccaa5a6..cd7e8d99a 100644 --- a/src/ir.cpp +++ b/src/ir.cpp @@ -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; |