diff options
author | Jim Blandy <jimb@codesourcery.com> | 2004-06-15 18:12:04 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2004-06-15 18:12:04 +0000 |
commit | 83313cb156981497748ff04e53a3bbadab44aca5 (patch) | |
tree | f6825769b7bec876efcbad55497c296695a24e12 /gdb/testsuite/gdb.arch | |
parent | dfff4fbed780143079e95d9a8fdfa28693eb81da (diff) | |
download | gdb-83313cb156981497748ff04e53a3bbadab44aca5.zip gdb-83313cb156981497748ff04e53a3bbadab44aca5.tar.gz gdb-83313cb156981497748ff04e53a3bbadab44aca5.tar.bz2 |
* gdb.arch/e500-regs.exp: Fix up 'print' pattern for the little-
endian case.
Diffstat (limited to 'gdb/testsuite/gdb.arch')
-rw-r--r-- | gdb/testsuite/gdb.arch/e500-regs.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.arch/e500-regs.exp b/gdb/testsuite/gdb.arch/e500-regs.exp index 9224704..30dae0a 100644 --- a/gdb/testsuite/gdb.arch/e500-regs.exp +++ b/gdb/testsuite/gdb.arch/e500-regs.exp @@ -1,4 +1,4 @@ -# Copyright 2003 Free Software Foundation, Inc. +# Copyright 2003, 2004 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -112,7 +112,7 @@ for {set i 0} {$i < 32} {incr i 1} { if {$endianness == "big"} { set decimal_vector ".uint64 = 4294967297, v2_float = .1.*e-45, 1.*e-45., v2_int32 = .1, 1., v4_int16 = .0, 1, 0, 1., v8_int8 = ..000.000.000.001.000.000.000.001.." } else { - set decimal_vector ".uint64 = 0x0000000100000001, v2_float = .1.*e-45, 1.*e-45., v2_int32 = .1, 1., v4_int16 = .1, 0, 1, 0., v8_int8 = ..001.000.000.000.001.000.000.000.001.000.000.000.001.000.000.." + set decimal_vector ".uint64 = 4294967297, v2_float = .1.*e-45, 1.*e-45., v2_int32 = .1, 1., v4_int16 = .1, 0, 1, 0., v8_int8 = ..001.000.000.000.001.000.000.." } for {set i 0} {$i < 32} {incr i 1} { |