summaryrefslogtreecommitdiff
path: root/backends/ilang/ilang_backend.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-09-19 15:50:34 +0200
committerClifford Wolf <clifford@clifford.at>2014-09-19 15:50:34 +0200
commit309623ff177f2538a4c529dbc025374008d85880 (patch)
treeb49659def8e4eb098d07f7849162eb3c4fbdf82e /backends/ilang/ilang_backend.h
parent5827826098fd827c7ac964ed45e99f92d63d9267 (diff)
Sorting of object names in ilang backend
Diffstat (limited to 'backends/ilang/ilang_backend.h')
-rw-r--r--backends/ilang/ilang_backend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/ilang/ilang_backend.h b/backends/ilang/ilang_backend.h
index 138e10ef..159cd719 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