qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit 9c4e4bc68afa23e1e22dcf939cd7647a0a615c2b
parent d3313ade5f58dcf02b90e69b9b7ef4376d15620d
Author: Michael Forney <mforney@mforney.org>
Date:   Thu, 11 Mar 2021 18:54:28 -0800

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:
Mmain.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 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 */ };