Skip to content

Commit

Permalink
Fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
akashlevy committed Sep 23, 2024
1 parent 0b8d951 commit 0fd6e29
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 550 deletions.
2 changes: 1 addition & 1 deletion frontends/verific/verific.cc
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ bool is_blackbox(Netlist *nl)
RTLIL::IdString VerificImporter::new_verific_id(Verific::DesignObj *obj)
{
std::string s = stringf("$%s", obj->Name());
while (seen_ids.count(s) > 0) s = "$" + s;
while (seen_ids.count(s)) s += stringf("$%d", autoidx++);
seen_ids.insert(s);
return s;
}
Expand Down
115 changes: 0 additions & 115 deletions tests/verific/case.gate.v

This file was deleted.

56 changes: 0 additions & 56 deletions tests/verific/case.gold.v

This file was deleted.

File renamed without changes.
Loading

0 comments on commit 0fd6e29

Please sign in to comment.