diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-02-02 06:16:07 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-02-02 06:16:07 +0000 |
commit | fcb12def35c9a0e7dbf7a53a768fcb189c196942 (patch) | |
tree | f3e74a748b3db32caee47ac21cc24c1fbd1b9fe5 | |
parent | f16c443c2df2621a80ad7c33c964113ce22065d9 (diff) | |
download | gdb-fcb12def35c9a0e7dbf7a53a768fcb189c196942.zip gdb-fcb12def35c9a0e7dbf7a53a768fcb189c196942.tar.gz gdb-fcb12def35c9a0e7dbf7a53a768fcb189c196942.tar.bz2 |
New test - verify sdl insn.
-rw-r--r-- | sim/testsuite/mips64r5900-elf/ChangeLog | 28 | ||||
-rw-r--r-- | sim/testsuite/mips64r5900-elf/t-sdl.s | 15 |
2 files changed, 43 insertions, 0 deletions
diff --git a/sim/testsuite/mips64r5900-elf/ChangeLog b/sim/testsuite/mips64r5900-elf/ChangeLog new file mode 100644 index 0000000..11b7fac --- /dev/null +++ b/sim/testsuite/mips64r5900-elf/ChangeLog @@ -0,0 +1,28 @@ +Mon Feb 2 16:50:21 1998 Andrew Cagney <cagney@b1.cygnus.com> + + * t-sdl.s: New test. + * Makefile.in: Update. + +Wed Sep 3 14:32:42 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * Makefile.in (.o.run): Replace .tx59 with .run. + +Mon Sep 1 16:58:13 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * Makefile.in (TESTS): Add t-psrlvw, t-pabsh, t-pabsw. + (.s.o, .o.tx59): Add -Ttext 0xa002000, to ld. Add -I <srcdir> to + as. + + t-psrlvw.s, t-pabsh, t-pabsw: New files. + +Tue Jul 29 10:56:53 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * t-mtsa.s: Check move/from SA instructions. + +Mon Jul 28 20:51:16 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * t-pdivuw.s: Also check normal cases. + +Tue Jul 15 13:34:07 1997 Andrew Cagney <cagney@sendai.cygnus.com> + + ChangeLog: Create diff --git a/sim/testsuite/mips64r5900-elf/t-sdl.s b/sim/testsuite/mips64r5900-elf/t-sdl.s new file mode 100644 index 0000000..ae76f74 --- /dev/null +++ b/sim/testsuite/mips64r5900-elf/t-sdl.s @@ -0,0 +1,15 @@ +.include "t-macros.i" + + start + +test_sdl: + load $8 0x0000000000000000 dest + load $9 0xbeefdead 0xdeadbeef + sdl $9, 7($8) + ld $10, dest + + check10 0x0000000000000000 0xdeadbeef + + exit0 + +dest: .long 0 |