From 89be7bf52785c9a3058a0049481388ad44459174 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Fri, 7 Nov 2014 20:58:08 +0100 Subject: Added "used" attribute to entries in yosys_cover_list http://www.reddit.com/r/yosys/comments/2kw479/fyi_clang_350_build_error/cltgwyc http://llvm.org/bugs/show_bug.cgi?id=19474 --- kernel/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/log.h b/kernel/log.h index 707497a9..93e8144a 100644 --- a/kernel/log.h +++ b/kernel/log.h @@ -90,7 +90,7 @@ static inline void log_assert_worker(bool cond, const char *expr, const char *fi #ifdef YOSYS_ENABLE_COVER #define cover(_id) do { \ - static CoverData __d __attribute__((section("yosys_cover_list"), aligned(1))) = { __FILE__, __FUNCTION__, _id, __LINE__, 0 }; \ + static CoverData __d __attribute__((section("yosys_cover_list"), aligned(1), used)) = { __FILE__, __FUNCTION__, _id, __LINE__, 0 }; \ __d.counter++; \ } while (0) -- cgit v1.2.3