temporary hack until Cherry can properly fix it

Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
This commit is contained in:
Matt Liberty 2023-12-21 14:35:25 -08:00
parent 42b994d429
commit f913c3ddbb
1 changed files with 1 additions and 1 deletions

View File

@ -687,7 +687,7 @@ LibertyBuilder::makeTimingArc(TimingArcSet *set,
RiseFall *to_rf,
TimingModel *model)
{
return new TimingArc(set, from_rf->asTransition(),
return new TimingArc(set, from_rf ? from_rf->asTransition() : nullptr,
to_rf->asTransition(), model);
}