diff options
| author | WormHeamer | 2025-10-27 22:22:41 -0400 |
|---|---|---|
| committer | WormHeamer | 2025-10-27 22:22:41 -0400 |
| commit | d69ebf5d418677e0d24d7a87af975e24be3788af (patch) | |
| tree | f5a49117f7bca69aa2fa7a6ea6991a2d3b8aa1f9 /ir.h | |
| parent | 8085cad870f340fabddcf8792353e05d69372968 (diff) | |
stuffs
Diffstat (limited to 'ir.h')
| -rw-r--r-- | ir.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; |
