From a8080ec4b7878c94db00ad1f19fea7fa9c20bbea Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Wed, 10 Jul 2024 15:23:26 -0700 Subject: [PATCH] Update Property.cc --- search/Property.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/Property.cc b/search/Property.cc index a3e49de3..e6ce3a4a 100644 --- a/search/Property.cc +++ b/search/Property.cc @@ -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());