mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-09-03 16:29:50 +02:00
ClkSkews::findClkSkewFrom const
Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
+2
-2
@@ -364,8 +364,8 @@ ClkSkews::findClkSkewFrom(Vertex *src_vertex,
|
||||
Edge *edge = edge_iter.next();
|
||||
if (edge->role()->genericRole() == TimingRole::regClkToQ()) {
|
||||
Vertex *q_vertex = edge->to(graph_);
|
||||
RiseFall *rf = edge->timingArcSet()->isRisingFallingEdge();
|
||||
RiseFallBoth *src_rf = rf
|
||||
const RiseFall *rf = edge->timingArcSet()->isRisingFallingEdge();
|
||||
const RiseFallBoth *src_rf = rf
|
||||
? rf->asRiseFallBoth()
|
||||
: RiseFallBoth::riseFall();
|
||||
findClkSkewFrom(src_vertex, q_vertex, src_rf, skews);
|
||||
|
||||
Reference in New Issue
Block a user