From 5fbf1f93d1ed06abf58df72955a983f3c8d06507 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Sun, 26 Jan 2020 13:37:39 -0700 Subject: [PATCH] get_property lib_cell --- search/Property.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/search/Property.cc b/search/Property.cc index 480bf0d4..279b9e61 100644 --- a/search/Property.cc +++ b/search/Property.cc @@ -677,6 +677,8 @@ getProperty(const LibertyPort *port, return PropertyValue(port->name()); else if (stringEqual(property, "full_name")) return PropertyValue(port->name()); + else if (stringEqual(property, "lib_cell")) + return PropertyValue(port->libertyCell()); else if (stringEqual(property, "direction")) return PropertyValue(port->direction()->name()); else if (stringEqual(property, "capacitance")) {