aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2018-11-29 19:28:15 +0000
committerDavid Shah <dave@ds0.me>2018-11-29 19:28:15 +0000
commit90138fc1201067844ca68f486399619eeabf0589 (patch)
tree36fb84f690a74f46612d20dbfc1de54c644bf2e4
parent4e05d093977043f5cb959406cd0a8583cf2a9bbe (diff)
downloadnextpnr-90138fc1201067844ca68f486399619eeabf0589.tar.gz
nextpnr-90138fc1201067844ca68f486399619eeabf0589.tar.bz2
nextpnr-90138fc1201067844ca68f486399619eeabf0589.zip
rulecheck: Improve message printed at start
Signed-off-by: David Shah <dave@ds0.me>
-rw-r--r--common/rulecheck.cc2
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();