mirror of
git://c9x.me/qbe.git
synced 2026-04-05 18:09:47 +00:00
Arrange debug flag table to match pass order
This makes it easier to determine which flag to pass to show the desired debug info.
This commit is contained in:
parent
d3313ade5f
commit
9c4e4bc68a
6
main.c
6
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 */
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user