mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #2871 from whitequark/cxxrtl-fix-2540-2841
cxxrtl: don't mark buffered internal wires as UNUSED for debug
This commit is contained in:
commit
10c3214e56
|
@ -2795,7 +2795,7 @@ struct CxxrtlWorker {
|
|||
const auto &wire_type = wire_types[wire];
|
||||
auto &debug_wire_type = debug_wire_types[wire];
|
||||
if (wire_type.type == WireType::UNUSED) continue;
|
||||
if (!wire->name.isPublic()) continue;
|
||||
if (!wire->name.isPublic() && !wire_type.is_buffered()) continue;
|
||||
|
||||
if (!debug_info) continue;
|
||||
if (wire->port_input || wire_type.is_buffered())
|
||||
|
|
Loading…
Reference in New Issue