odin/codegen: add args slice to UnrollRangeStmt

This commit is contained in:
ed
2025-01-11 22:09:40 -05:00
parent cb1ffad6f4
commit 37ec315a91
+1
View File
@@ -335,6 +335,7 @@ char const* desc_UnrollRangeStmt = "unroll range statement";
struct UnrollRangeStmt { struct UnrollRangeStmt {
Scope *scope; Scope *scope;
Token unroll_token; Token unroll_token;
Slice<Ast *> args;
Token for_token; Token for_token;
Ast *val0; Ast *val0;
Ast *val1; Ast *val1;