diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2020-02-17 15:36:06 +0100 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2020-02-17 15:36:06 +0100 |
commit | 5641b0248fe0781ee62fa3bc903f8db95e80b0c4 (patch) | |
tree | 89f09c800484ff128c956ce71a349eaba2837c0f /kernel/log.h | |
parent | d8735b291365a2a6e8fb8c768f61ad41f0763f96 (diff) | |
download | yosys-5641b0248fe0781ee62fa3bc903f8db95e80b0c4.tar.gz yosys-5641b0248fe0781ee62fa3bc903f8db95e80b0c4.tar.bz2 yosys-5641b0248fe0781ee62fa3bc903f8db95e80b0c4.zip |
Option to expect no warnings
Diffstat (limited to 'kernel/log.h')
-rw-r--r-- | kernel/log.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/log.h b/kernel/log.h index 0f912fccb..79de1a20a 100644 --- a/kernel/log.h +++ b/kernel/log.h @@ -52,6 +52,7 @@ extern std::map<std::string, std::set<std::string>> log_hdump; extern std::vector<std::regex> log_warn_regexes, log_nowarn_regexes, log_werror_regexes; extern std::set<std::string> log_warnings, log_experimentals, log_experimentals_ignored; extern int log_warnings_count; +extern bool log_expect_no_warnings; extern bool log_hdump_all; extern FILE *log_errfile; extern SHA1 *log_hasher; |