aboutsummaryrefslogtreecommitdiffstats
path: root/common/archcheck.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2020-07-02 13:32:30 +0100
committerGitHub <noreply@github.com>2020-07-02 13:32:30 +0100
commit137241cfef385a68d2ce732a5b3283458790543d (patch)
treebff5c42b4c43f89281a6ce967411785a17db3d25 /common/archcheck.cc
parent4a2964c91568c63928f1d916aef1a1b84a9e608d (diff)
parent72786e249a2c099b3434a270840d007f7178105c (diff)
downloadnextpnr-137241cfef385a68d2ce732a5b3283458790543d.tar.gz
nextpnr-137241cfef385a68d2ce732a5b3283458790543d.tar.bz2
nextpnr-137241cfef385a68d2ce732a5b3283458790543d.zip
Merge pull request #463 from YosysHQ/fix-archcheck
Fix arch checks, and add these to CI
Diffstat (limited to 'common/archcheck.cc')
-rw-r--r--common/archcheck.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/archcheck.cc b/common/archcheck.cc
index 3d9e4e76..7b727e9b 100644
--- a/common/archcheck.cc
+++ b/common/archcheck.cc
@@ -47,14 +47,14 @@ void archcheck_names(const Context *ctx)
WireId wire2 = ctx->getWireByName(name);
log_assert(wire == wire2);
}
-
+#ifndef ARCH_ECP5
log_info("Checking pip names..\n");
for (PipId pip : ctx->getPips()) {
IdString name = ctx->getPipName(pip);
PipId pip2 = ctx->getPipByName(name);
log_assert(pip == pip2);
}
-
+#endif
log_break();
}