From 4777bce77ea8a7d62614bb0445a0eba90c7eff89 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Wed, 7 Aug 2024 12:46:44 -0700 Subject: [PATCH] issue66 followup Signed-off-by: James Cherry --- include/sta/PathEnd.hh | 1 + search/PathEnd.cc | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/include/sta/PathEnd.hh b/include/sta/PathEnd.hh index 455b78dd..6bca1f97 100644 --- a/include/sta/PathEnd.hh +++ b/include/sta/PathEnd.hh @@ -388,6 +388,7 @@ public: Crpr &crpr_diff, Delay &max_borrow, bool &borrow_limit_exists) const; + virtual bool ignoreClkLatency(const StaState *sta) const; protected: PathEndLatchCheck(Path *path, diff --git a/search/PathEnd.cc b/search/PathEnd.cc index 10c93394..a60b1f45 100644 --- a/search/PathEnd.cc +++ b/search/PathEnd.cc @@ -1269,6 +1269,12 @@ PathEndLatchCheck::exceptPathCmp(const PathEnd *path_end, return cmp; } +bool +PathEndLatchCheck::ignoreClkLatency(const StaState *sta) const +{ + return PathEnd::ignoreClkLatency(path_, path_delay_, sta); +} + /////////////////////////////////////////////////////////////// PathEndOutputDelay::PathEndOutputDelay(OutputDelay *output_delay,