summaryrefslogtreecommitdiff
path: root/kernel/log.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-11-06 09:39:55 +0100
committerClifford Wolf <clifford@clifford.at>2014-11-06 09:39:55 +0100
commita346c0bf2b0ed5278e0f86d4ef23a6a9d03eef40 (patch)
tree57c95841b9f5c2c7cd6a1dd1d0d59f8239dba670 /kernel/log.cc
parent80869531b91b0fd8da90a1bebdc8d81d35e36e23 (diff)
Made "cover" a compile-time option (disabled by default)
Diffstat (limited to 'kernel/log.cc')
-rw-r--r--kernel/log.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/log.cc b/kernel/log.cc
index 807f58bf..1a21e9fe 100644
--- a/kernel/log.cc
+++ b/kernel/log.cc
@@ -274,7 +274,7 @@ void log_cell(RTLIL::Cell *cell, std::string indent)
// ---------------------------------------------------
// This is the magic behind the code coverage counters
// ---------------------------------------------------
-#ifdef COVER_ACTIVE
+#ifdef YOSYS_ENABLE_COVER
std::map<std::string, std::pair<std::string, int>> extra_coverage_data;