Skip to content

Commit

Permalink
Update src/generator/passes.jl
Browse files Browse the repository at this point in the history
Co-authored-by: Jed Brown <[email protected]>
  • Loading branch information
Gnimuc and jedbrown authored Oct 13, 2021
1 parent c5e2ee9 commit 9798720
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 @@ -802,7 +802,7 @@ function (x::FunctionPrinter)(dag::ExprDAG, options::Dict)
general_options = get(options, "general", Dict())
log_options = get(general_options, "log", Dict())
show_info = get(log_options, "FunctionPrinter_log", x.show_info)
denylist = get(general_options, "printer_denylist", [])
denylist = get(general_options, "printer_denylist", get(general_options, "printer_blacklist", []))

show_info && @info "[FunctionPrinter]: print to $(x.file)"
open(x.file, "w") do io
Expand Down

0 comments on commit 9798720

Please sign in to comment.