diff options
| author | 2025-12-23 11:36:51 +0100 | |
|---|---|---|
| committer | 2025-12-23 11:39:45 +0100 | |
| commit | 7036e19098c295a075f97cbd056fdc43bd490fb2 (patch) | |
| tree | 8e03e29ab8f5645b0b7c71c7663e608b17de0573 /ir/ir.h | |
| parent | 56cf12a2aca36fabf3c3918947a88cbc4a605bb2 (diff) | |
lower alloca as a separate pass before isel
Diffstat (limited to 'ir/ir.h')
| -rw-r--r-- | ir/ir.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -62,6 +62,7 @@ enum refkind { RXCON, /* other constants (incl. external symbols) */ RADDR, /* target-specific addressing mode */ RTYPE, /* irtype */ + RSTACK, /* stack base offset */ }; union ref { @@ -325,6 +326,9 @@ void mem2reg(struct function *); /** intrin.c **/ void lowerintrin(struct function *); +/** stack.c **/ +void lowerstack(struct function *); + /** regalloc.c **/ void regalloc(struct function *); |