diff options
author | David Shah <dave@ds0.me> | 2018-11-29 19:28:15 +0000 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2018-11-29 19:28:15 +0000 |
commit | 90138fc1201067844ca68f486399619eeabf0589 (patch) | |
tree | 36fb84f690a74f46612d20dbfc1de54c644bf2e4 /common | |
parent | 4e05d093977043f5cb959406cd0a8583cf2a9bbe (diff) | |
download | nextpnr-90138fc1201067844ca68f486399619eeabf0589.tar.gz nextpnr-90138fc1201067844ca68f486399619eeabf0589.tar.bz2 nextpnr-90138fc1201067844ca68f486399619eeabf0589.zip |
rulecheck: Improve message printed at start
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'common')
-rw-r--r-- | common/rulecheck.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rulecheck.cc b/common/rulecheck.cc index c696e548..1db9ae00 100644 --- a/common/rulecheck.cc +++ b/common/rulecheck.cc @@ -9,7 +9,7 @@ bool check_all_nets_driven(Context *ctx) { const bool debug = false; - log_info("Rule checker, Verifying pre-placed design\n"); + log_info("Rule checker, verifying imported design\n"); for (auto &cell_entry : ctx->cells) { CellInfo *cell = cell_entry.second.get(); |