s390-vregs.exp: Fix Tcl error after non-zero-pad patch
authorAndreas Arnez <arnez@linux.vnet.ibm.com>
Mon, 24 Jul 2017 16:35:30 +0000 (18:35 +0200)
committerAndreas Arnez <arnez@linux.vnet.ibm.com>
Mon, 24 Jul 2017 16:35:30 +0000 (18:35 +0200)
commit031ed05dd2756557c3f5cda6690a9f3220918ffb
tree11acc439e083c0b9423c8ad34a3ff929c1fd46c7
parent7684e58062af4886aceb05ecd83a956bfcd14aaf
s390-vregs.exp: Fix Tcl error after non-zero-pad patch

s390-vregs.exp yields a Tcl error:

  ERROR: can't read "i": no such variable
      while executing
  "expr $a_high * ($i + 1) * $a_high "
      (procedure "hex128" line 2)
      invoked from within
  "hex128 $a_high $a_low $b_high $b_low"
  ...

This is a regression, caused by commit 30a254669b16b8 -- "Don't always
zero pad in print_*_chars".  That patch introduced a new procedure
"hex128" for formatting a 128-bit value as hex, but it accidentally moved
the calculation of the 128-bit value into that new procedure as well
instead of leaving it in the original context.  This is fixed.

gdb/testsuite/ChangeLog:

* gdb.arch/s390-vregs.exp: Calculate parameters to hex128 in the
calling context.
(hex128): Drop erroneous calculation of parameters.
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.arch/s390-vregs.exp