mirror of
https://github.com/verilator/verilator.git
synced 2025-01-22 14:24:18 +00:00
parent
3c79e00d24
commit
d891e5ac3a
@ -2170,7 +2170,7 @@ public:
|
||||
return ((isIO() || isSignal())
|
||||
&& (isIO() || isBitLogic())
|
||||
// Wrapper would otherwise duplicate wrapped module's coverage
|
||||
&& !isSc() && !isPrimaryIO() && !isConst() && !isDouble());
|
||||
&& !isSc() && !isPrimaryIO() && !isConst() && !isDouble() && !isString());
|
||||
}
|
||||
bool isClassMember() const { return varType() == AstVarType::MEMBER; }
|
||||
bool isStatementTemp() const { return (varType() == AstVarType::STMTTEMP); }
|
||||
|
@ -7,11 +7,13 @@
|
||||
module t (/*AUTOARG*/
|
||||
// Inputs
|
||||
clk,
|
||||
check_real
|
||||
check_real,
|
||||
check_string
|
||||
);
|
||||
|
||||
input clk;
|
||||
input real check_real; // Check issue #2741
|
||||
input string check_string; // Check issue #2766
|
||||
|
||||
typedef struct packed {
|
||||
union packed {
|
||||
|
Loading…
Reference in New Issue
Block a user