From 87573a9fefafac8843f84537facb2455f4542962 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Mon, 24 Nov 2014 18:37:55 -0500 Subject: [PATCH] Part of earlier commit - no SystemPerl now for coverage. --- src/V3Options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3Options.h b/src/V3Options.h index e6b6be3f5..30208b935 100644 --- a/src/V3Options.h +++ b/src/V3Options.h @@ -198,7 +198,7 @@ class V3Options { bool systemC() const { return m_systemC; } bool systemPerl() const { return m_systemPerl; } bool usingSystemCLibs() const { return !lintOnly() && (systemPerl() || systemC()); } - bool usingSystemPerlLibs() const { return !lintOnly() && (systemPerl() || coverage()); } + bool usingSystemPerlLibs() const { return !lintOnly() && systemPerl(); } bool savable() const { return m_savable; } bool skipIdentical() const { return m_skipIdentical; } bool stats() const { return m_stats; }