Skip to content

Commit 7c03d50

Browse files
committed
fix synth_preamble syntax
Signed-off-by: Jack Luar <[email protected]>
1 parent 1f47df8 commit 7c03d50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/scripts/synth_preamble.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ proc convert_liberty_areas { } {
141141
continue
142142
}
143143
set area [rtlil::get_attr -string -mod $cell area]
144-
if { $found_cell == "" || [$area < $found_cell_area] } {
144+
if { $found_cell == "" || $area < $found_cell_area } {
145145
set found_cell $cell
146146
set found_cell_area $area
147147
}

0 commit comments

Comments
 (0)