diff options
author | Jim Lawson <ucbjrl@berkeley.edu> | 2019-07-24 13:33:16 -0700 |
---|---|---|
committer | Jim Lawson <ucbjrl@berkeley.edu> | 2019-07-24 13:33:16 -0700 |
commit | 7e298084e458c3fcccece565df305271db51aec8 (patch) | |
tree | e9143077ae0f3e6205004f5c4b051caf44e2c58d /backends/firrtl | |
parent | c66b7402c06455535bb43ee65fe20515b5b9c0ee (diff) | |
download | yosys-7e298084e458c3fcccece565df305271db51aec8.tar.gz yosys-7e298084e458c3fcccece565df305271db51aec8.tar.bz2 yosys-7e298084e458c3fcccece565df305271db51aec8.zip |
Call log_error() instead of log_warning() on unsupported cell type in FIRRTL backend.
Diffstat (limited to 'backends/firrtl')
-rw-r--r-- | backends/firrtl/firrtl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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()) |