Replaced log_assert() do { ... } while (0) hack with a static inline function
authorClifford Wolf <clifford@clifford.at>
Wed, 15 Oct 2014 18:36:32 +0000 (20:36 +0200)
committerClifford Wolf <clifford@clifford.at>
Wed, 15 Oct 2014 18:36:32 +0000 (20:36 +0200)
kernel/log.h

index 904ba4759535df45dccc944351f972904ca3dcbe..421c50d3fab2f26280c828e6e463e5f9e3e0a7bd 100644 (file)
@@ -74,8 +74,12 @@ template<typename T> static inline const char *log_id(T *obj) {
 
 void log_cell(RTLIL::Cell *cell, std::string indent = "");
 
+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_abort() YOSYS_NAMESPACE_PREFIX log_error("Abort in %s:%d.\n", __FILE__, __LINE__)
-#define log_assert(_assert_expr_) do { if (_assert_expr_) break; YOSYS_NAMESPACE_PREFIX log_error("Assert `%s' failed in %s:%d.\n", #_assert_expr_, __FILE__, __LINE__); } while (0)
+#define log_assert(_assert_expr_) YOSYS_NAMESPACE_PREFIX log_assert_worker(_assert_expr_, #_assert_expr_, __FILE__, __LINE__)
 #define log_ping() YOSYS_NAMESPACE_PREFIX log("-- %s:%d %s --\n", __FILE__, __LINE__, __PRETTY_FUNCTION__)