From b1ff7e8bf24b40cf64127a6194d45661db3a4baf Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Fri, 31 Jul 2026 23:52:09 -0400 Subject: code gen can use registers besides RAX now --- scope.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scope.h') diff --git a/scope.h b/scope.h index 8a3c80f..72b342c 100644 --- a/scope.h +++ b/scope.h @@ -16,9 +16,9 @@ struct storage_location { STO_UNRESOLVED, } type; union { - const struct reg* reg; + struct reg* reg; const char* label; - long long bp_offset; + sintegral_t bp_offset; integral_t value; struct fn_decl_node* decl; }; -- cgit v1.2.3