diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-10-11 17:40:30 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-10-11 17:40:30 +0000 |
commit | 31224d9db8c26f298f30796479309e8611fc43d5 (patch) | |
tree | abe51fbe2b769364a7bc08551ff207ca7b503c89 /gdb/testsuite/gdb.arch/i386-avx.exp | |
parent | 7c09e5a0f7f3612c42e52d90056f73167cdb4ae5 (diff) | |
download | binutils-gdb-31224d9db8c26f298f30796479309e8611fc43d5.tar.gz |
Check is_amd64_regs_target to to set nr_regs
* gdb.arch/i386-avx.exp: Check is_amd64_regs_target instead of
is_ilp32_target to set nr_regs.
* gdb.arch/i386-sse.exp: Likewise.
Diffstat (limited to 'gdb/testsuite/gdb.arch/i386-avx.exp')
-rw-r--r-- | gdb/testsuite/gdb.arch/i386-avx.exp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.arch/i386-avx.exp b/gdb/testsuite/gdb.arch/i386-avx.exp index 52a6e4aa8f5..32ba5b658de 100644 --- a/gdb/testsuite/gdb.arch/i386-avx.exp +++ b/gdb/testsuite/gdb.arch/i386-avx.exp @@ -73,10 +73,10 @@ gdb_test "break [gdb_get_line_number "first breakpoint here"]" \ "set first breakpoint in main" gdb_continue_to_breakpoint "continue to first breakpoint in main" -if [is_ilp32_target] { - set nr_regs 8 -} else { +if [is_amd64_regs_target] { set nr_regs 16 +} else { + set nr_regs 8 } for { set r 0 } { $r < $nr_regs } { incr r } { |