Update Property.cc

This commit is contained in:
Akash Levy 2024-07-10 15:23:26 -07:00 committed by GitHub
parent 51e7e63fd8
commit a8080ec4b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -900,7 +900,7 @@ getProperty(const Instance *inst,
return PropertyValue(network->libertyCell(inst));
else if (stringEqual(property, "cell"))
return PropertyValue(network->cell(inst));
else if (stringEqual(property, "is_hierarchical"))
else if (stringEqual(property, "is_hierarchical"))
return PropertyValue(network->isHierarchical(inst));
else if (stringEqual(property, "is_buffer"))
return PropertyValue(libertyCell && libertyCell->isBuffer());