* elf32-sparc.c (_bfd_sparc_elf_howto_table): Fix dst_mask for
[deliverable/binutils-gdb.git] / gas / testsuite / gas / sparc / sparc.exp
CommitLineData
252b5132
RH
1# Some generic SPARC and SPARC64 tests
2
3# FIXME: The tests here aren't really bullet proof. A mistake in the opcode
4# table can slip through since we use the same table for assembly and
5# disassembly. The way to fix this is to include a hex dump of the insns
6# and test that as well. Later.
7
b3fb1136
RH
8# Find out if these binutils are either sparc64*-*-* or
9# sparc*-*-* with --enable-targets=sparc64-*-*
10proc gas_64_check { } {
11 global NM
12 global NMFLAGS
13 global srcdir
252b5132 14
b3fb1136
RH
15 catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help
16 return [regexp "elf64\[_-\]sparc" $nm_help];
17}
252b5132 18
b3fb1136
RH
19if [istarget sparc*-*-*] {
20 run_dump_test "synth"
0f2712ed 21 run_dump_test "unalign"
bd5e6e7e
JJ
22 run_dump_test "pcrel"
23 run_dump_test "plt"
b3fb1136
RH
24 if [gas_64_check] {
25 run_dump_test "asi"
26 run_dump_test "membar"
27 run_dump_test "prefetch"
28 run_dump_test "set64"
29 run_dump_test "synth64"
30 run_dump_test "rdpr"
31 run_dump_test "wrpr"
32 run_dump_test "reloc64"
bd5e6e7e
JJ
33 run_dump_test "pcrel64"
34 run_dump_test "plt64"
b3fb1136 35 }
252b5132
RH
36}
37
38if [istarget sparclet*-*-*] {
39 run_dump_test "splet"
40 run_dump_test "splet-2"
41}
This page took 0.099615 seconds and 4 git commands to generate.