set_max_delay -ignore_clock_latency, set_clock_latency, ideal clks

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2021-11-08 15:58:31 -07:00
parent 4b446de006
commit 4235b43d42
1 changed files with 1 additions and 1 deletions

View File

@ -2274,7 +2274,7 @@ Search::pathClkPathArrival(const Path *path) const
// Check for input arrival clock. // Check for input arrival clock.
ClockEdge *clk_edge = path->clkEdge(this); ClockEdge *clk_edge = path->clkEdge(this);
if (clk_edge) if (clk_edge)
return clk_edge->time(); return clk_edge->time() + clk_info->latency();
return 0.0; return 0.0;
} }