From cb12b7c4d8153896b1f798994aed2aa97a41f011 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 28 Jan 2022 14:20:16 +0100 Subject: ignore not found private signals --- kernel/fstdata.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'kernel') 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) -- cgit v1.2.3