Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2022-06-05 08:38:47 -07:00
parent f9a5223f08
commit 0f46bb180f
2 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ Genclks::srcPathVertex(const Pin *pin) const
}
Level
Genclks::clkPinMaxLevel(Clock *clk) const
Genclks::clkPinMaxLevel(const Clock *clk) const
{
Level max_level = 0;
for (Pin *pin : clk->leafPins()) {

View File

@ -82,7 +82,7 @@ public:
const RiseFall *rf,
const PathAnalysisPt *path_ap) const;
Vertex *srcPathVertex(const Pin *pin) const;
Level clkPinMaxLevel(Clock *clk) const;
Level clkPinMaxLevel(const Clock *clk) const;
void copyGenClkSrcPaths(Vertex *vertex,
TagGroupBldr *tag_bldr);