Skip to content

Commit 16bcfca

Browse files
committed
grt: update grt error code numbers
Signed-off-by: Jonas Gava <[email protected]>
1 parent a790073 commit 16bcfca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/grt/src/GlobalRouter.tcl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -474,13 +474,13 @@ proc estimate_path_resistance { args } {
474474
flags {-verbose}
475475

476476
if { [llength $args] != 2 } {
477-
utl::error GRT 282 "estimate_path_resistance requires two pin names."
477+
utl::error GRT 289 "estimate_path_resistance requires two pin names."
478478
}
479479
lassign $args pin1_name pin2_name
480480

481481
set block [ord::get_db_block]
482482
if { $block == "NULL" } {
483-
utl::error GRT 283 "Missing dbBlock."
483+
utl::error GRT 290 "Missing dbBlock."
484484
}
485485

486486
set pin1 [$block findITerm $pin1_name]
@@ -493,7 +493,7 @@ proc estimate_path_resistance { args } {
493493
}
494494
}
495495
if { $pin1 == "NULL" } {
496-
utl::error GRT 284 "Pin $pin1_name not found."
496+
utl::error GRT 291 "Pin $pin1_name not found."
497497
}
498498

499499
set pin2 [$block findITerm $pin2_name]
@@ -506,7 +506,7 @@ proc estimate_path_resistance { args } {
506506
}
507507
}
508508
if { $pin2 == "NULL" } {
509-
utl::error GRT 285 "Pin $pin2_name not found."
509+
utl::error GRT 292 "Pin $pin2_name not found."
510510
}
511511

512512
set verbose [info exists flags(-verbose)]
@@ -520,7 +520,7 @@ proc estimate_path_resistance { args } {
520520
set layer1 [$tech findLayer $layer1_name]
521521
}
522522
if { $layer1 == "NULL" } {
523-
utl::error GRT 286 "Layer $layer1_name not found."
523+
utl::error GRT 293 "Layer $layer1_name not found."
524524
}
525525

526526
if { [info exists layer2_name] } {

0 commit comments

Comments
 (0)