mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-09-06 09:17:17 +02:00
closes #132 spef net missing escapes
Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
@@ -168,7 +168,12 @@ SpefReader::findInstanceRelative(const char *name)
|
||||
Net *
|
||||
SpefReader::findNetRelative(const char *name)
|
||||
{
|
||||
return network_->findNetRelative(instance_, name);
|
||||
Net *net = network_->findNetRelative(instance_, name);
|
||||
// Relax spef escaping requirement because some commercial tools
|
||||
// don't follow the rules.
|
||||
if (net == nullptr)
|
||||
net = sdc_network_->findNetRelative(instance_, name);
|
||||
return net;
|
||||
}
|
||||
|
||||
Pin *
|
||||
|
||||
Reference in New Issue
Block a user