From 19421e7ab20c65f312a4b74e689e3c14bdcf0479 Mon Sep 17 00:00:00 2001 From: Peter Gadfort Date: Fri, 31 Jan 2025 08:15:25 -0700 Subject: [PATCH] dbSta: fix modinst lookup Signed-off-by: Peter Gadfort --- src/dbSta/src/dbSta.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbSta/src/dbSta.tcl b/src/dbSta/src/dbSta.tcl index 74b2ccbf99e..e0930659635 100644 --- a/src/dbSta/src/dbSta.tcl +++ b/src/dbSta/src/dbSta.tcl @@ -93,7 +93,7 @@ proc report_cell_usage { args } { set module [[ord::get_db_block] getTopModule] if { $args != "" } { - set modinst [[ord::get_db_block] findModInst $args] + set modinst [[ord::get_db_block] findModInst [lindex $args 0]] if { $modinst == "NULL" } { sta_error 1002 "Unable to find $args" }