diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-06-07 16:48:47 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-06-07 16:53:17 -0400 |
commit | 527d49a18979bc04992af5864034af57495a2f0b (patch) | |
tree | cc4d4a404bf0e0f5840f7cb217c8a2c8ad0fcf61 /opt.c | |
parent | 8896f35294649975c1df22a8b57db4333cc56091 (diff) | |
download | bfs-527d49a18979bc04992af5864034af57495a2f0b.tar.xz |
opt: Dump the command line before optimizing with -D opt
Diffstat (limited to 'opt.c')
-rw-r--r-- | opt.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -984,6 +984,8 @@ static struct expr *optimize_expr(struct opt_state *state, struct expr *expr) { } int optimize_cmdline(struct cmdline *cmdline) { + dump_cmdline(cmdline, DEBUG_OPT); + struct opt_facts facts_when_impure; set_facts_impossible(&facts_when_impure); |