aboutsummaryrefslogtreecommitdiffstats
path: root/common/exclusive_state_groups.impl.h
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-09-27 17:50:55 +0100
committerGitHub <noreply@github.com>2021-09-27 17:50:55 +0100
commit535b2490c422f2343e97404c7c304c71b549e3a3 (patch)
tree0c9a4e687fccf488fd8a0f4df58103f4de8eea8a /common/exclusive_state_groups.impl.h
parent9782a46a9b4edb24cc73ea65f1ad7697ed74ab41 (diff)
parentea489f6d934ac6e649bcd81e10856e809f6b30d2 (diff)
downloadnextpnr-535b2490c422f2343e97404c7c304c71b549e3a3.tar.gz
nextpnr-535b2490c422f2343e97404c7c304c71b549e3a3.tar.bz2
nextpnr-535b2490c422f2343e97404c7c304c71b549e3a3.zip
Merge pull request #812 from antmicro/MacroCells
Convert macros to clusters for better placement
Diffstat (limited to 'common/exclusive_state_groups.impl.h')
-rw-r--r--common/exclusive_state_groups.impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/exclusive_state_groups.impl.h b/common/exclusive_state_groups.impl.h
index 53e4e83c..f3ddb5fd 100644
--- a/common/exclusive_state_groups.impl.h
+++ b/common/exclusive_state_groups.impl.h
@@ -74,10 +74,10 @@ void ExclusiveStateGroup<StateCount, StateType, CountType>::explain_requires(con
log_info("Placing cell %s at bel %s does not violate %s.%s\n", cell.c_str(ctx), ctx->nameOfBel(bel),
object.c_str(ctx), definition.prefix.c_str(ctx));
} else {
- log_info("Placing cell %s at bel %s does violates %s.%s, because current state is %s, constraint requires one "
+ log_info("Placing cell %s at bel %s does violate %s.%s, because current state is %s, constraint requires one "
"of:\n",
cell.c_str(ctx), ctx->nameOfBel(bel), object.c_str(ctx), definition.prefix.c_str(ctx),
- definition.states.at(state).c_str(ctx));
+ state != -1 ? definition.states.at(state).c_str(ctx) : "unset");
for (const auto required_state : state_range) {
log_info(" - %s\n", definition.states.at(required_state).c_str(ctx));