summary refs log tree commit diff
path: root/main.c
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2021-03-11 18:54:28 -0800
committerQuentin Carbonneaux <quentin@c9x.me>2021-03-12 17:07:05 +0100
commit9c4e4bc68afa23e1e22dcf939cd7647a0a615c2b (patch)
tree187ea38c28577c8958e8e2f46ee58d0d38f21c43 /main.c
parentd3313ade5f58dcf02b90e69b9b7ef4376d15620d (diff)
downloadroux-9c4e4bc68afa23e1e22dcf939cd7647a0a615c2b.tar.gz
Arrange debug flag table to match pass order
This makes it easier to determine which flag to pass to show the
desired debug info.
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index 56529c9..d265475 100644
--- a/main.c
+++ b/main.c
@@ -24,13 +24,13 @@ enum Asm {
 
 char debug['Z'+1] = {
 	['P'] = 0, /* parsing */
-	['A'] = 0, /* abi lowering */
-	['I'] = 0, /* instruction selection */
-	['L'] = 0, /* liveness */
 	['M'] = 0, /* memory optimization */
 	['N'] = 0, /* ssa construction */
 	['C'] = 0, /* copy elimination */
 	['F'] = 0, /* constant folding */
+	['A'] = 0, /* abi lowering */
+	['I'] = 0, /* instruction selection */
+	['L'] = 0, /* liveness */
 	['S'] = 0, /* spilling */
 	['R'] = 0, /* reg. allocation */
 };