1
0
mirror of synced 2026-04-15 01:34:14 +00:00

Merge pull request #4135 from YosysHQ/verific_clocking_fix

Fix verific clocking when no driver exist
This commit is contained in:
N. Engelhardt
2024-01-18 15:40:35 +01:00
committed by GitHub
2 changed files with 11 additions and 1 deletions

View File

@@ -2110,7 +2110,7 @@ VerificClocking::VerificClocking(VerificImporter *importer, Net *net, bool sva_a
if (sva_at_only)
do {
Instance *inst_mux = net->Driver();
if (inst_mux->Type() != PRIM_MUX)
if (inst_mux == nullptr || inst_mux->Type() != PRIM_MUX)
break;
bool pwr1 = inst_mux->GetInput1()->IsPwr();

10
tests/verific/clocking.ys Normal file
View File

@@ -0,0 +1,10 @@
read -sv <<EOT
module test(input foo);
always @(*) assert(foo);
endmodule
EOT
verific -import test
prep
select -assert-count 1 t:$assert