mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
Merge pull request #2487 from whitequark/cxxrtl-outlining
CXXRTL: implement zero-cost full coverage debug information through the magic✨ of outlining🪄🎀🧹
This commit is contained in:
commit
ab9e2f4fda
6 changed files with 416 additions and 170 deletions
|
@ -376,7 +376,7 @@ namespace RTLIL
|
|||
bool in(const std::string &rhs) const { return *this == rhs; }
|
||||
bool in(const pool<IdString> &rhs) const { return rhs.count(*this) != 0; }
|
||||
|
||||
bool isPublic() { return begins_with("\\"); }
|
||||
bool isPublic() const { return begins_with("\\"); }
|
||||
};
|
||||
|
||||
namespace ID {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue