3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-24 01:25:33 +00:00

Don't SIGABRT on failure

This commit is contained in:
Akash Levy 2025-01-23 14:51:40 -08:00
parent f403256a34
commit 33653c8a80

View file

@ -223,7 +223,6 @@ static inline void log_assert_worker(bool cond, const char *expr, const char *fi
if (!cond) {
log("ERROR: Assert `%s' failed in %s:%d.\n", expr, file, line);
log_flush();
raise(SIGABRT);
}
}
#ifndef NDEBUG