diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-09-19 15:50:34 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-09-19 15:50:34 +0200 |
commit | 309623ff177f2538a4c529dbc025374008d85880 (patch) | |
tree | b49659def8e4eb098d07f7849162eb3c4fbdf82e /backends/ilang/ilang_backend.h | |
parent | 5827826098fd827c7ac964ed45e99f92d63d9267 (diff) | |
download | yosys-309623ff177f2538a4c529dbc025374008d85880.tar.gz yosys-309623ff177f2538a4c529dbc025374008d85880.tar.bz2 yosys-309623ff177f2538a4c529dbc025374008d85880.zip |
Sorting of object names in ilang backend
Diffstat (limited to 'backends/ilang/ilang_backend.h')
-rw-r--r-- | backends/ilang/ilang_backend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/ilang/ilang_backend.h b/backends/ilang/ilang_backend.h index 138e10efb..159cd7192 100644 --- a/backends/ilang/ilang_backend.h +++ b/backends/ilang/ilang_backend.h @@ -42,8 +42,8 @@ namespace ILANG_BACKEND { void dump_proc_sync(std::ostream &f, std::string indent, const RTLIL::SyncRule *sy); void dump_proc(std::ostream &f, std::string indent, const RTLIL::Process *proc); void dump_conn(std::ostream &f, std::string indent, const RTLIL::SigSpec &left, const RTLIL::SigSpec &right); - void dump_module(std::ostream &f, std::string indent, const RTLIL::Module *module, const RTLIL::Design *design, bool only_selected, bool flag_m = true, bool flag_n = false); - void dump_design(std::ostream &f, const RTLIL::Design *design, bool only_selected, bool flag_m = true, bool flag_n = false); + void dump_module(std::ostream &f, std::string indent, RTLIL::Module *module, RTLIL::Design *design, bool only_selected, bool flag_m = true, bool flag_n = false); + void dump_design(std::ostream &f, RTLIL::Design *design, bool only_selected, bool flag_m = true, bool flag_n = false); } YOSYS_NAMESPACE_END |