diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-01-05 18:26:26 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-01-05 18:26:26 +0200 |
commit | 79d80d2d8905b62a30f8856b86811ed932c00c45 (patch) | |
tree | 4450dd14740a2d7e94e354e4e9fd5d4a7041de15 /include | |
parent | 1b670d703473fbf00cb6e1a8411e0e8c27e84c8e (diff) | |
download | posthaste-79d80d2d8905b62a30f8856b86811ed932c00c45.tar.gz posthaste-79d80d2d8905b62a30f8856b86811ed932c00c45.zip |
fix procedure/function compilation
+ Add fib example
Diffstat (limited to 'include')
-rw-r--r-- | include/posthaste/ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/posthaste/ast.h b/include/posthaste/ast.h index 64e987f..3096186 100644 --- a/include/posthaste/ast.h +++ b/include/posthaste/ast.h @@ -68,7 +68,7 @@ enum type_kind { /* used by lower.c, defined here to avoid circular dependencies */ struct loc { - /* offset within either local stack */ + /* offset within local stack */ uintptr_t s; /* offset within global array */ uintptr_t g; |