Apply 'make format'
This commit is contained in:
parent
916a89761e
commit
b27bd6526a
|
@ -615,7 +615,8 @@ class LinkCellsVisitor final : public VNVisitor {
|
|||
nodep->name(hierIt->first); // Change name of this module to be mangled name
|
||||
// considering parameter
|
||||
}
|
||||
const AstNodeModule* const libFoundp = findModuleLibSym(nodep->origName(), nodep->libname());
|
||||
const AstNodeModule* const libFoundp
|
||||
= findModuleLibSym(nodep->origName(), nodep->libname());
|
||||
const AstNodeModule* const globalFoundp = findModuleLibSym(nodep->name(), "__GLOBAL");
|
||||
if (libFoundp && libFoundp == nodep) {
|
||||
// Ok
|
||||
|
@ -674,9 +675,7 @@ public:
|
|||
iterate(nodep);
|
||||
}
|
||||
~LinkCellsVisitor() override {
|
||||
if (debug() >= 5 || dumpGraphLevel() >= 5) {
|
||||
m_mods.dumpFilePrefixed("linkcells");
|
||||
}
|
||||
if (debug() >= 5 || dumpGraphLevel() >= 5) { m_mods.dumpFilePrefixed("linkcells"); }
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -11,8 +11,9 @@ import vltest_bootstrap
|
|||
|
||||
test.scenarios('simulator')
|
||||
|
||||
test.compile(
|
||||
verilator_flags2=['--binary', '--work liba', 't/t_config_work__liba.v', '--work libb', 't/t_config_work__libb.v'])
|
||||
test.compile(verilator_flags2=[
|
||||
'--binary', '--work liba', 't/t_config_work__liba.v', '--work libb', 't/t_config_work__libb.v'
|
||||
])
|
||||
|
||||
test.execute()
|
||||
|
||||
|
|
Loading…
Reference in New Issue