mirror of https://github.com/YosysHQ/yosys.git
Fix compiler warning in verific.cc
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
3661c27acd
commit
05e1c39064
|
@ -1676,6 +1676,7 @@ YOSYS_NAMESPACE_END
|
|||
|
||||
PRIVATE_NAMESPACE_BEGIN
|
||||
|
||||
#ifdef YOSYS_ENABLE_VERIFIC
|
||||
bool check_noverific_env()
|
||||
{
|
||||
const char *e = getenv("YOSYS_NOVERIFIC");
|
||||
|
@ -1685,6 +1686,7 @@ bool check_noverific_env()
|
|||
return false;
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
||||
struct VerificPass : public Pass {
|
||||
VerificPass() : Pass("verific", "load Verilog and VHDL designs using Verific") { }
|
||||
|
|
Loading…
Reference in New Issue