From d69ebf5d418677e0d24d7a87af975e24be3788af Mon Sep 17 00:00:00 2001 From: WormHeamer Date: Mon, 27 Oct 2025 22:22:41 -0400 Subject: stuffs --- ir.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ir.h') diff --git a/ir.h b/ir.h index d640f5a..ccc2348 100644 --- a/ir.h +++ b/ir.h @@ -31,10 +31,13 @@ typedef struct Type { } Type; typedef struct Value { + /* TODO: maybe move type to end for alignment reasons */ Type type; union { int64_t i; uint64_t u; + /* TODO: + * maybe can use a slice instead of dynamic array, save 8 bytes */ DYNARR(struct Value) tuple; }; } Value; -- cgit v1.2.3