diff options
author | Thiemo Seufer <ths@networkno.de> | 2006-07-25 16:45:55 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2006-07-25 16:45:55 +0000 |
commit | 6085129af61e55103a963d370ca9777979cfc0d7 (patch) | |
tree | 98fd5267c2bd47bfa3f3fb3c868e66329523624f /ld/testsuite/ld-mips-elf/mips16-call-global-3.s | |
parent | 7544697a28726eedeb276533240555dd97fcea22 (diff) | |
download | gdb-6085129af61e55103a963d370ca9777979cfc0d7.zip gdb-6085129af61e55103a963d370ca9777979cfc0d7.tar.gz gdb-6085129af61e55103a963d370ca9777979cfc0d7.tar.bz2 |
* ld-mips-elf/mips16-call-global-2.s,
ld-mips-elf/mips16-call-global-3.s, ld-mips-elf/mips16-call-global.d:
Improve test robustness.
Diffstat (limited to 'ld/testsuite/ld-mips-elf/mips16-call-global-3.s')
-rw-r--r-- | ld/testsuite/ld-mips-elf/mips16-call-global-3.s | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ld/testsuite/ld-mips-elf/mips16-call-global-3.s b/ld/testsuite/ld-mips-elf/mips16-call-global-3.s index e776b3d..5113c5d 100644 --- a/ld/testsuite/ld-mips-elf/mips16-call-global-3.s +++ b/ld/testsuite/ld-mips-elf/mips16-call-global-3.s @@ -1,6 +1,16 @@ + .set nomips16 + .globl y .ent y .type y,@function y: jr $31 .end y + + .ent z + .type z,@function +z: + jr $31 + .end z + + .space 8 |