aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2020-12-19 04:14:31 +0000
committerGitHub <noreply@github.com>2020-12-19 04:14:31 +0000
commitab9e2f4fda1da455643579537d0ae6ffc6d46aab (patch)
treee292e0193ad5f61409c9f2581d62a036653dc93d /kernel
parenteaf6b551b68f44bc31c2d4274c91944451b01649 (diff)
parentd889a3df35e539b6dcfbee9c6a98461eca1a0b0e (diff)
downloadyosys-ab9e2f4fda1da455643579537d0ae6ffc6d46aab.tar.gz
yosys-ab9e2f4fda1da455643579537d0ae6ffc6d46aab.tar.bz2
yosys-ab9e2f4fda1da455643579537d0ae6ffc6d46aab.zip
Merge pull request #2487 from whitequark/cxxrtl-outlining
CXXRTL: implement zero-cost full coverage debug information through the magic✨ of outlining🪄🎀🧹
Diffstat (limited to 'kernel')
-rw-r--r--kernel/rtlil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index a03e8933c..cd966b815 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -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 {