Skip to content

Commit 8968c84

Browse files
committed
Increase the set of PnR-excluded cells
Signed-off-by: gatecat <[email protected]>
1 parent 4220ce1 commit 8968c84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/frontend_base.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ template <typename FrontendType> struct GenericFrontend
448448
void import_leaf_cell(HierModuleState &m, const std::string &name, const cell_dat_t &cd)
449449
{
450450
auto cell_type = impl.get_cell_type(cd);
451-
if (cell_type == "$scopeinfo")
451+
if (cell_type == "$scopeinfo" || cell_type == "$print" || cell_type == "$check")
452452
return;
453453
IdString inst_name = unique_name(m.prefix, name, false);
454454
ctx->hierarchy[m.path].leaf_cells_by_gname[inst_name] = ctx->id(name);

0 commit comments

Comments
 (0)