aboutsummaryrefslogtreecommitdiffstats
path: root/common/log.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-07-23 14:03:23 +0200
committerClifford Wolf <clifford@clifford.at>2018-07-23 14:03:23 +0200
commite647604e2a584917ad2fc9acfe838a1395c613c2 (patch)
tree79af7f375362eeae2a0d9ee96c1bc6f09ab8fcce /common/log.h
parent90fe002a36a9b90cd6d003d34398242a5d5affb6 (diff)
downloadnextpnr-e647604e2a584917ad2fc9acfe838a1395c613c2.tar.gz
nextpnr-e647604e2a584917ad2fc9acfe838a1395c613c2.tar.bz2
nextpnr-e647604e2a584917ad2fc9acfe838a1395c613c2.zip
Add Context::archcheck() and "nextpnr-ice40 --test"
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common/log.h')
-rw-r--r--common/log.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/common/log.h b/common/log.h
index c3607e39..35450311 100644
--- a/common/log.h
+++ b/common/log.h
@@ -69,17 +69,13 @@ NPNR_NORETURN void log_cmd_error(const char *format, ...) NPNR_ATTRIBUTE(format(
void log_break();
void log_flush();
-#ifndef NDEBUG
static inline void log_assert_worker(bool cond, const char *expr, const char *file, int line)
{
if (!cond)
log_error("Assert `%s' failed in %s:%d.\n", expr, file, line);
}
#define log_assert(_assert_expr_) \
- YOSYS_NAMESPACE_PREFIX log_assert_worker(_assert_expr_, #_assert_expr_, __FILE__, __LINE__)
-#else
-#define log_assert(_assert_expr_)
-#endif
+ NEXTPNR_NAMESPACE_PREFIX log_assert_worker(_assert_expr_, #_assert_expr_, __FILE__, __LINE__)
#define log_abort() log_error("Abort in %s:%d.\n", __FILE__, __LINE__)
#define log_ping() log("-- %s:%d %s --\n", __FILE__, __LINE__, __PRETTY_FUNCTION__)