Skip to content

Commit

Permalink
For Loop info
Browse files Browse the repository at this point in the history
  • Loading branch information
Alain Dargelas committed Nov 21, 2024
1 parent 11f44b2 commit f78623f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontends/verific/verific.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2918,10 +2918,10 @@ std::set<std::string> import_tops(const char* work, std::map<std::string,Netlist
#ifdef VERIFIC_LINEFILE_INCLUDES_LOOPS
// Decorate AST with loop scope id
VeriModule *module;
MapIter mi ;
MapIter mi;
DecorateLoopsVisitor loop_visitor;
FOREACH_VERILOG_MODULE_IN_LIBRARY(veri_lib, mi,module) {
module->Accept(loop_visitor);
FOREACH_VERILOG_MODULE_IN_LIBRARY(veri_lib, mi, module) {
module->Accept(loop_visitor);
}
#endif

Expand Down

0 comments on commit f78623f

Please sign in to comment.