fix compiler errors (to upstream)

Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
This commit is contained in:
Matt Liberty 2025-04-15 18:50:15 +00:00
parent eb7bc4c3aa
commit 1cbfea5d26
3 changed files with 3 additions and 3 deletions

View File

@ -542,7 +542,7 @@ public:
ClockSet *to_clks,
InstanceSet *to_insts,
const RiseFallBoth *rf,
RiseFallBoth *end_rf);
const RiseFallBoth *end_rf);
void checkExceptionToPins(ExceptionTo *to,
const char *file, int) const;
void deleteExceptionTo(ExceptionTo *to);

View File

@ -2073,7 +2073,7 @@ Sta::makeExceptionTo(PinSet *to_pins,
ClockSet *to_clks,
InstanceSet *to_insts,
const RiseFallBoth *rf,
RiseFallBoth *end_rf)
const RiseFallBoth *end_rf)
{
return sdc_->makeExceptionTo(to_pins, to_clks, to_insts, rf, end_rf);
}

View File

@ -84,7 +84,7 @@ TagGroup::hasTag(Tag *tag) const
size_t
TagGroup::pathIndex(Tag *tag) const
{
size_t path_index;
size_t path_index = 0;
bool exists;
pathIndex(tag, path_index, exists);
return path_index;