forked from github/verilator
parent
a11700271f
commit
769c0fa318
@ -53,6 +53,7 @@ Nandu Raj
|
||||
Nathan Kohagen
|
||||
Nathan Myers
|
||||
Patrick Stewart
|
||||
Paul Wright
|
||||
Peter Horvath
|
||||
Peter Monsson
|
||||
Philipp Wagner
|
||||
|
@ -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); }
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user