diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-19 15:00:24 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-19 15:00:24 +0200 |
commit | d7f424b809e5671ede98d1fd97a58429ce3fcd8a (patch) | |
tree | 2f3634e0ee5da89af0bebc4ea3584dd649445848 /ice40 | |
parent | 2603c6d805ad310c6d440ab49fec5eea78cc3b15 (diff) | |
download | nextpnr-d7f424b809e5671ede98d1fd97a58429ce3fcd8a.tar.gz nextpnr-d7f424b809e5671ede98d1fd97a58429ce3fcd8a.tar.bz2 nextpnr-d7f424b809e5671ede98d1fd97a58429ce3fcd8a.zip |
Improved log messages in SA placer, minor changes from clangformat
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/cells.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ice40/cells.cc b/ice40/cells.cc index 582e5c14..c2bc4609 100644 --- a/ice40/cells.cc +++ b/ice40/cells.cc @@ -211,9 +211,10 @@ void nxio_to_sb(Context *ctx, CellInfo *nxio, CellInfo *sbio) replace_port(tbuf, "E", sbio, "OUTPUT_ENABLE"); ctx->nets.erase(donet->name); if (!donet->users.empty()) - log_error("unsupported tristate IO pattern for IO buffer '%s', " - "instantiate SB_IO manually to ensure correct behaviour\n", - nxio->name.c_str(ctx)); + log_error( + "unsupported tristate IO pattern for IO buffer '%s', " + "instantiate SB_IO manually to ensure correct behaviour\n", + nxio->name.c_str(ctx)); ctx->cells.erase(tbuf->name); } } |