Fix to ignore coverage on real ports (#2741) (#2745)

This commit is contained in:
Paul Wright 2021-01-10 17:40:03 +00:00 committed by GitHub
parent a11700271f
commit 769c0fa318
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -53,6 +53,7 @@ Nandu Raj
Nathan Kohagen
Nathan Myers
Patrick Stewart
Paul Wright
Peter Horvath
Peter Monsson
Philipp Wagner

View File

@ -2170,7 +2170,7 @@ public:
return ((isIO() || isSignal())
&& (isIO() || isBitLogic())
// Wrapper would otherwise duplicate wrapped module's coverage
&& !isSc() && !isPrimaryIO() && !isConst());
&& !isSc() && !isPrimaryIO() && !isConst() && !isDouble());
}
bool isClassMember() const { return varType() == AstVarType::MEMBER; }
bool isStatementTemp() const { return (varType() == AstVarType::STMTTEMP); }

View File

@ -6,10 +6,12 @@
module t (/*AUTOARG*/
// Inputs
clk
clk,
check_real
);
input clk;
input real check_real; // Check issue #2741
typedef struct packed {
union packed {