mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Fix segfault on failed VERILOG_FRONTEND::const2ast, closes #1131
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
8e9ef891fe
commit
f6053b8810
|
@ -153,7 +153,7 @@ AstNode *VERILOG_FRONTEND::const2ast(std::string code, char case_type, bool warn
|
||||||
{
|
{
|
||||||
if (warn_z) {
|
if (warn_z) {
|
||||||
AstNode *ret = const2ast(code, case_type);
|
AstNode *ret = const2ast(code, case_type);
|
||||||
if (std::find(ret->bits.begin(), ret->bits.end(), RTLIL::State::Sz) != ret->bits.end())
|
if (ret != nullptr && std::find(ret->bits.begin(), ret->bits.end(), RTLIL::State::Sz) != ret->bits.end())
|
||||||
log_warning("Yosys has only limited support for tri-state logic at the moment. (%s:%d)\n",
|
log_warning("Yosys has only limited support for tri-state logic at the moment. (%s:%d)\n",
|
||||||
current_filename.c_str(), get_line_num());
|
current_filename.c_str(), get_line_num());
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue