From f8080424b35cd843b69ce29f1e3b6f2694266d09 Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Tue, 16 Jul 2024 15:28:26 -0700 Subject: [PATCH] Revert source_pins to sources --- search/Property.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/Property.cc b/search/Property.cc index 2b7366ca..d51b5303 100644 --- a/search/Property.cc +++ b/search/Property.cc @@ -1178,7 +1178,7 @@ getProperty(Clock *clk, return PropertyValue(clk->name()); else if (stringEqual(property, "period")) return PropertyValue(clk->period(), sta->units()->timeUnit()); - else if (stringEqual(property, "source_pins")) + else if (stringEqual(property, "sources")) return PropertyValue(clk->pins()); else if (stringEqual(property, "is_generated")) return PropertyValue(clk->isGenerated());