mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 08:08:50 +00:00
Fix ir_emit_slice_bounds_check
This commit is contained in:
+1
-1
@@ -3679,7 +3679,7 @@ void ir_emit_slice_bounds_check(irProcedure *proc, Token token, irValue *low, ir
|
|||||||
low = ir_emit_conv(proc, low, t_int);
|
low = ir_emit_conv(proc, low, t_int);
|
||||||
high = ir_emit_conv(proc, high, t_int);
|
high = ir_emit_conv(proc, high, t_int);
|
||||||
|
|
||||||
irValue **args = gb_alloc_array(a, irValue *, 5);
|
irValue **args = gb_alloc_array(a, irValue *, 6);
|
||||||
args[0] = file;
|
args[0] = file;
|
||||||
args[1] = line;
|
args[1] = line;
|
||||||
args[2] = column;
|
args[2] = column;
|
||||||
|
|||||||
Reference in New Issue
Block a user