From: Jim Lawson Date: Wed, 24 Jul 2019 20:33:16 +0000 (-0700) Subject: Call log_error() instead of log_warning() on unsupported cell type in FIRRTL backend. X-Git-Tag: working-ls180~1153^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7e298084e458c3fcccece565df305271db51aec8;p=yosys.git Call log_error() instead of log_warning() on unsupported cell type in FIRRTL backend. --- diff --git a/backends/firrtl/firrtl.cc b/backends/firrtl/firrtl.cc index 1c7a7351f..b7a798b85 100644 --- a/backends/firrtl/firrtl.cc +++ b/backends/firrtl/firrtl.cc @@ -833,7 +833,7 @@ struct FirrtlWorker register_reverse_wire_map(y_id, cell->getPort("\\Y")); continue; } - log_warning("Cell type not supported: %s (%s.%s)\n", log_id(cell->type), log_id(module), log_id(cell)); + log_error("Cell type not supported: %s (%s.%s)\n", log_id(cell->type), log_id(module), log_id(cell)); } for (auto conn : module->connections())