Threading related crash (NOT) in STA/CTS resolves orfs3180
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
0c16e145bb
commit
849426fc96
|
|
@ -110,12 +110,18 @@ ClkInfo::crprClkVertexId(const StaState *sta) const
|
|||
Path *
|
||||
ClkInfo::crprClkPath(const StaState *sta)
|
||||
{
|
||||
if (crpr_clk_path_.isNull())
|
||||
return nullptr;
|
||||
else
|
||||
return Path::vertexPath(crpr_clk_path_, sta);
|
||||
}
|
||||
|
||||
const Path *
|
||||
ClkInfo::crprClkPath(const StaState *sta) const
|
||||
{
|
||||
if (crpr_clk_path_.isNull())
|
||||
return nullptr;
|
||||
else
|
||||
return Path::vertexPath(crpr_clk_path_, sta);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -366,6 +366,9 @@ Path::slack(const StaState *sta) const
|
|||
Path *
|
||||
Path::prevPath() const
|
||||
{
|
||||
if (prev_path_ && prev_path_->isNull())
|
||||
return nullptr;
|
||||
else
|
||||
return prev_path_;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue