From: Clifford Wolf Date: Wed, 23 Jul 2014 19:38:18 +0000 (+0200) Subject: Fixed release build X-Git-Tag: yosys-0.4~466 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=95ac484548d4a4550568de09343964150806042d;p=yosys.git Fixed release build --- diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index d2f37cec4..7d630b352 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -1291,8 +1291,10 @@ RTLIL::Memory::Memory() void RTLIL::Cell::check() { +#ifndef NDEBUG InternalCellChecker checker(NULL, this); checker.check(); +#endif } RTLIL::SigChunk::SigChunk()