From ee85f90edd17d9c3fadc0d118021c18a5bb8463c Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Sat, 28 Mar 2026 07:21:26 -1000 Subject: impl x86_64 calling convention --- scope.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scope.h') diff --git a/scope.h b/scope.h index 36b6a93..e09e14e 100644 --- a/scope.h +++ b/scope.h @@ -10,7 +10,9 @@ struct storage_location { union { long long offset; const char* label; + const struct reg* reg; }; + unsigned long long sz; }; struct type_def { @@ -21,6 +23,7 @@ struct type_def { struct var_def { const char* name; struct storage_location loc; + unsigned long long sz; }; struct scope { -- cgit v1.2.3