Merge branch 'master' into rel_3.0

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2026-02-03 08:40:58 -07:00
commit 0ae888b619
2 changed files with 3 additions and 3 deletions

View File

@ -1137,7 +1137,7 @@ LibertyCell::isClockGateLatchPosedge() const
bool
LibertyCell::isClockGateLatchNegedge() const
{
return clock_gate_type_ == ClockGateType::latch_posedge;
return clock_gate_type_ == ClockGateType::latch_negedge;
}
bool

View File

@ -601,8 +601,8 @@ LibertyReader::defineScalingFactorVisitors()
string attr_name;
stringPrint(attr_name, "k_%s_%s_%s",
pvt_name,
tr_name,
type_name);
type_name,
tr_name);
defineAttrVisitor(attr_name.c_str(),&LibertyReader::visitScaleFactorHiLow);
}
}