diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2004-12-13 13:09:55 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2004-12-13 13:09:55 +0000 |
commit | 1f0f3e9b89d0a2be5d400541202204f5adf83df5 (patch) | |
tree | c22b48562edc36a1ca5619a1ef4ed41c049ecb21 /ld | |
parent | c0d8293fa5db1cc418c9ef3cfff23c4e57dcc48a (diff) | |
download | gdb-1f0f3e9b89d0a2be5d400541202204f5adf83df5.zip gdb-1f0f3e9b89d0a2be5d400541202204f5adf83df5.tar.gz gdb-1f0f3e9b89d0a2be5d400541202204f5adf83df5.tar.bz2 |
* ld-mips-elf/mips-elf.exp: Only run jalbal if n32 is supported.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | ld/testsuite/ld-mips-elf/mips-elf.exp | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index f3b2a32..14a6fa1 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-12-13 Richard Sandiford <rsandifo@redhat.com> + + * ld-mips-elf/mips-elf.exp: Only run jalbal if n32 is supported. + 2004-12-11 Alan Modra <amodra@bigpond.net.au> * ld-mmix/bpo-1.d: Update for changed section syms. diff --git a/ld/testsuite/ld-mips-elf/mips-elf.exp b/ld/testsuite/ld-mips-elf/mips-elf.exp index 1c4c327..36e29c5 100644 --- a/ld/testsuite/ld-mips-elf/mips-elf.exp +++ b/ld/testsuite/ld-mips-elf/mips-elf.exp @@ -81,4 +81,6 @@ if {$has_newabi && $linux_gnu} { } run_dump_test "jaloverflow" -run_dump_test "jalbal" +if {$has_newabi} { + run_dump_test "jalbal" +} |