# TODO:
"gdb/testsuite/boards",
"gdb/testsuite/config",
-"gdb/testsuite/lib/aarch64.exp",
"gdb/testsuite/lib/aarch64-scalable.exp",
"gdb/testsuite/lib/gdb.exp",
# IGNORE (document reason in trailing comment):
append data $byte
# If this isn't the last element, add a comma.
- if {[expr $element + 1] < $elements} {
+ if {$element + 1 < $elements} {
append data ", "
}
}
set brace_open "{"
set brace_close "}"
- if {[expr $rows * $columns] <= 256} {
+ if {$rows * $columns <= 256} {
# Build the assignment in a single shot, as we have a maximum of 256
# elements.
for {set row 0} {$row < $rows} {incr row} {
append data $byte
# If this isn't the last column, add a comma.
- if {[expr $column + 1] < $columns} {
+ if {$column + 1 < $columns} {
append data ", "
}
}
append data $brace_close
# If this isn't the last row, add a comma.
- if {[expr $row + 1] < $rows} {
+ if {$row + 1 < $rows} {
append data ","
}
}