aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-12-23 11:36:51 +0100
committerlemon <lsof@mailbox.org>2025-12-23 11:39:45 +0100
commit7036e19098c295a075f97cbd056fdc43bd490fb2 (patch)
tree8e03e29ab8f5645b0b7c71c7663e608b17de0573 /main.c
parent56cf12a2aca36fabf3c3918947a88cbc4a605bb2 (diff)
lower alloca as a separate pass before isel
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
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 <file> \tPlace the output into <file>\n"
" -v \tVerbose output\n"
" -c \tEmit object file but do not link\n"