aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorN. Engelhardt <nak@symbioticeda.com>2020-09-03 17:37:58 +0200
committerN. Engelhardt <nak@symbioticeda.com>2020-09-03 17:37:58 +0200
commit4af04be0b7bb493a86a35a60f3b18d88df6b8ea9 (patch)
tree9d116752c45c097f70298dea72f04b300039e705 /kernel
parentc66d1dfad17b03f60375b478d15d4eff1c3d8cb8 (diff)
downloadyosys-4af04be0b7bb493a86a35a60f3b18d88df6b8ea9.tar.gz
yosys-4af04be0b7bb493a86a35a60f3b18d88df6b8ea9.tar.bz2
yosys-4af04be0b7bb493a86a35a60f3b18d88df6b8ea9.zip
add IdString::isPublic()
Diffstat (limited to 'kernel')
-rw-r--r--kernel/rtlil.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 6c561cb85..a03e8933c 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -375,6 +375,8 @@ namespace RTLIL
bool in(const char *rhs) const { return *this == rhs; }
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("\\"); }
};
namespace ID {