Skip to content

Commit 62472e9

Browse files
committed
ram: remove redundant power pin name checks across cells
Signed-off-by: Thinh Nguyen <nguyenthinh19011@gmail.com>
1 parent 93f02ec commit 62472e9

1 file changed

Lines changed: 0 additions & 28 deletions

File tree

src/ram/src/ram.cpp

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -590,34 +590,6 @@ std::map<PortRole, std::string> RamGen::buildPortMap(dbMaster* master)
590590
}
591591
}
592592

593-
if (power_pin_names_.size() > 1) {
594-
std::string names;
595-
for (const auto& name : power_pin_names_) {
596-
if (!names.empty()) {
597-
names += ", ";
598-
}
599-
names += name;
600-
}
601-
logger_->error(RAM,
602-
42,
603-
"Multiple primary power pin names detected across cells: {}",
604-
names);
605-
}
606-
if (ground_pin_names_.size() > 1) {
607-
std::string names;
608-
for (const auto& name : ground_pin_names_) {
609-
if (!names.empty()) {
610-
names += ", ";
611-
}
612-
names += name;
613-
}
614-
logger_->error(
615-
RAM,
616-
43,
617-
"Multiple primary ground pin names detected across cells: {}",
618-
names);
619-
}
620-
621593
return pin_map;
622594
}
623595

0 commit comments

Comments
 (0)