mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-08-28 17:05:17 +02:00
max_slew respect set_disable_timing
This commit is contained in:
@@ -137,9 +137,11 @@ CheckSlewLimits::checkSlews1(const Pin *pin,
|
|||||||
{
|
{
|
||||||
Vertex *vertex, *bidirect_drvr_vertex;
|
Vertex *vertex, *bidirect_drvr_vertex;
|
||||||
sta_->graph()->pinVertices(pin, vertex, bidirect_drvr_vertex);
|
sta_->graph()->pinVertices(pin, vertex, bidirect_drvr_vertex);
|
||||||
checkSlews1(vertex, corner, min_max,
|
if (!vertex->isDisabledConstraint())
|
||||||
corner1, rf, slew, limit, slack);
|
checkSlews1(vertex, corner, min_max,
|
||||||
if (bidirect_drvr_vertex)
|
corner1, rf, slew, limit, slack);
|
||||||
|
if (bidirect_drvr_vertex
|
||||||
|
&& !vertex->isDisabledConstraint())
|
||||||
checkSlews1(bidirect_drvr_vertex, corner, min_max,
|
checkSlews1(bidirect_drvr_vertex, corner, min_max,
|
||||||
corner1, rf, slew, limit, slack);
|
corner1, rf, slew, limit, slack);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user