Skip to content

Commit caa28fa

Browse files
committed
final_report: consistency, export in make should not have quotes
fixes scripting to match convention of no quotes in makefile export statements Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 0cae61e commit caa28fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flow/scripts/final_report.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if {[env_var_exists_and_non_empty RCX_RULES]} {
3939

4040
# Static IR drop analysis
4141
if {[env_var_exists_and_non_empty PWR_NETS_VOLTAGES]} {
42-
dict for {pwrNetName pwrNetVoltage} {*}$::env(PWR_NETS_VOLTAGES) {
42+
dict for {pwrNetName pwrNetVoltage} $::env(PWR_NETS_VOLTAGES) {
4343
set_pdnsim_net_voltage -net ${pwrNetName} -voltage ${pwrNetVoltage}
4444
analyze_power_grid -net ${pwrNetName} \
4545
-error_file $::env(REPORTS_DIR)/${pwrNetName}.rpt
@@ -48,7 +48,7 @@ if {[env_var_exists_and_non_empty RCX_RULES]} {
4848
puts "IR drop analysis for power nets is skipped because PWR_NETS_VOLTAGES is undefined"
4949
}
5050
if {[env_var_exists_and_non_empty GND_NETS_VOLTAGES]} {
51-
dict for {gndNetName gndNetVoltage} {*}$::env(GND_NETS_VOLTAGES) {
51+
dict for {gndNetName gndNetVoltage} $::env(GND_NETS_VOLTAGES) {
5252
set_pdnsim_net_voltage -net ${gndNetName} -voltage ${gndNetVoltage}
5353
analyze_power_grid -net ${gndNetName} \
5454
-error_file $::env(REPORTS_DIR)/${gndNetName}.rpt

0 commit comments

Comments
 (0)