Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnimuc committed Oct 21, 2021
1 parent d616ec5 commit 50fd046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generator/passes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ function (x::StdPrinter)(dag::ExprDAG, options::Dict)
general_options = get(options, "general", Dict())
log_options = get(general_options, "log", Dict())
show_info = get(log_options, "StdPrinter_log", x.show_info)
ignorelist = get(general_options, "output_ignorelist", get(general_options, "auto_mutability_blacklist", []))
ignorelist = get(general_options, "output_ignorelist", get(general_options, "printer_blacklist", []))

for node in dag.nodes
string(node.id) ignorelist && continue
Expand Down

0 comments on commit 50fd046

Please sign in to comment.