From 79d80d2d8905b62a30f8856b86811ed932c00c45 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 5 Jan 2025 18:26:26 +0200 Subject: fix procedure/function compilation + Add fib example --- include/posthaste/ast.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') 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; -- cgit v1.2.3