mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-15 13:28:59 +00:00
cxxrtl: use debug attrs of alias not aliasee
This commit is contained in:
parent
915df16c84
commit
6d4f056a35
|
@ -2497,7 +2497,7 @@ struct CxxrtlWorker {
|
||||||
// Alias of a member wire
|
// Alias of a member wire
|
||||||
const RTLIL::Wire *aliasee = debug_wire_type.sig_subst.as_wire();
|
const RTLIL::Wire *aliasee = debug_wire_type.sig_subst.as_wire();
|
||||||
f << indent << "items->add(path, " << escape_cxx_string(get_hdl_name(wire)) << ", ";
|
f << indent << "items->add(path, " << escape_cxx_string(get_hdl_name(wire)) << ", ";
|
||||||
dump_debug_attrs(aliasee);
|
dump_debug_attrs(wire);
|
||||||
f << ", ";
|
f << ", ";
|
||||||
// If the aliasee is an outline, then the alias must be an outline, too; otherwise downstream
|
// If the aliasee is an outline, then the alias must be an outline, too; otherwise downstream
|
||||||
// tooling has no way to find out about the outline.
|
// tooling has no way to find out about the outline.
|
||||||
|
|
Loading…
Reference in a new issue