From 7036e19098c295a075f97cbd056fdc43bd490fb2 Mon Sep 17 00:00:00 2001 From: lemon Date: Tue, 23 Dec 2025 11:36:51 +0100 Subject: lower alloca as a separate pass before isel --- main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index 5a430b4..20f0a17 100644 --- a/main.c +++ b/main.c @@ -146,6 +146,7 @@ optparse(char **args) case 'a': ccopt.dbg.a = 1; break; case 'm': ccopt.dbg.m = 1; break; case 'o': ccopt.dbg.o = 1; break; + case 's': ccopt.dbg.s = 1; break; case 'i': ccopt.dbg.i = 1; break; case 'l': ccopt.dbg.l = 1; break; case 'r': ccopt.dbg.r = 1; break; @@ -578,7 +579,7 @@ prihelp(void) " -help \tPrint this help message\n" " -std=<..> \tSet C standard (c89, c99, c11, c23)\n" " -pedantic \tWarnings for strict standards compliance\n" - " -d{pamoilr} \tDebug print IR after {parse, abi, mem, opts, isel, live, rega}\n" + " -d{pamosilr} \tDebug print IR after {parse, abi, mem, opts, stack, isel, live, rega}\n" " -o \tPlace the output into \n" " -v \tVerbose output\n" " -c \tEmit object file but do not link\n" -- cgit v1.2.3