Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2025-07-22 19:32:55 -07:00
parent 0d7c89f544
commit 6d039659cb
2 changed files with 3 additions and 3 deletions

View File

@ -230,14 +230,14 @@ void
CheckTiming::checkUnconstrainedEndpoints()
{
PinSet unconstrained_ends(network_);
checkUnconstraintedOutputs(unconstrained_ends);
checkUnconstrainedOutputs(unconstrained_ends);
checkUnconstrainedSetups(unconstrained_ends);
pushPinErrors("Warning: There %is %d unconstrained endpoint%s.",
unconstrained_ends);
}
void
CheckTiming::checkUnconstraintedOutputs(PinSet &unconstrained_ends)
CheckTiming::checkUnconstrainedOutputs(PinSet &unconstrained_ends)
{
Instance *top_inst = network_->topInstance();
InstancePinIterator *pin_iter = network_->pinIterator(top_inst);

View File

@ -59,7 +59,7 @@ protected:
void checkUnconstrainedEndpoints();
bool hasClkedArrival(Vertex *vertex);
void checkNoOutputDelay(PinSet &ends);
void checkUnconstraintedOutputs(PinSet &unconstrained_ends);
void checkUnconstrainedOutputs(PinSet &unconstrained_ends);
void checkUnconstrainedSetups(PinSet &unconstrained_ends);
void checkLoops();
bool hasClkedDepature(Pin *pin);