mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-08-30 09:48:30 +02:00
or20190411 write_path_spice with no voltage_map, pg_pins
This commit is contained in:
@@ -2473,9 +2473,9 @@ LibertyReader::visitClockGatingIntegratedCell(LibertyAttr *attr)
|
||||
if (cell_) {
|
||||
const char *clock_gate_type = getAttrString(attr);
|
||||
if (clock_gate_type) {
|
||||
if (stringBeginEq(clock_gate_type, "latch_posedge"))
|
||||
if (stringBeginEqual(clock_gate_type, "latch_posedge"))
|
||||
cell_->setClockGateType(ClockGateType::latch_posedge);
|
||||
else if (stringBeginEq(clock_gate_type, "latch_negedge"))
|
||||
else if (stringBeginEqual(clock_gate_type, "latch_negedge"))
|
||||
cell_->setClockGateType(ClockGateType::latch_negedge);
|
||||
else
|
||||
cell_->setClockGateType(ClockGateType::other);
|
||||
|
||||
Reference in New Issue
Block a user