aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2022-01-28 14:20:16 +0100
committerMiodrag Milanovic <mmicko@gmail.com>2022-01-28 14:20:16 +0100
commitcb12b7c4d8153896b1f798994aed2aa97a41f011 (patch)
treee40e9276327ecbd89a628d2759a1e43b934b70e6 /kernel
parentf0f3c81c566778b223ba3c5c0c224d5e09ac983d (diff)
downloadyosys-cb12b7c4d8153896b1f798994aed2aa97a41f011.tar.gz
yosys-cb12b7c4d8153896b1f798994aed2aa97a41f011.tar.bz2
yosys-cb12b7c4d8153896b1f798994aed2aa97a41f011.zip
ignore not found private signals
Diffstat (limited to 'kernel')
-rw-r--r--kernel/fstdata.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/fstdata.cc b/kernel/fstdata.cc
index 70dcb88ce..5d6d85ed8 100644
--- a/kernel/fstdata.cc
+++ b/kernel/fstdata.cc
@@ -42,8 +42,7 @@ fstHandle FstData::getHandle(std::string name) {
if (name_to_handle.find(name) != name_to_handle.end())
return name_to_handle[name];
else
- log_warning("Unable to found wire %s in input file.\n", name.c_str());
- return 0;
+ return 0;
};
static std::string remove_spaces(std::string str)