diff options
author | Kaz Kojima <kkojima@rr.iij4u.or.jp> | 2004-04-02 01:39:31 +0000 |
---|---|---|
committer | Kaz Kojima <kkojima@rr.iij4u.or.jp> | 2004-04-02 01:39:31 +0000 |
commit | f55629b89c0e0cbd97068d1680483fce4477bf46 (patch) | |
tree | e89eea1f03cbcedff200bd96133aaeac17878c99 /gas/testsuite | |
parent | afb7d967cbd4c9e14792e1569964092b9d1fcf44 (diff) | |
download | gdb-f55629b89c0e0cbd97068d1680483fce4477bf46.zip gdb-f55629b89c0e0cbd97068d1680483fce4477bf46.tar.gz gdb-f55629b89c0e0cbd97068d1680483fce4477bf46.tar.bz2 |
[gas]
2004-04-01 Asgari Jinia <asgarij@kpitcummins.com>
Dhananjay Deshpande <dhananjayd@kpitcummins.com>
* config/tc-sh.c (dont_adjust_reloc_32): New variable.
(sh_fix_adjustable): Avoid adjusting BFD_RELOC_32 when
dont_adjust_reloc_32 is set.
(md_longopts): Add option -renesas.
(md_parse_option, md_show_usage): Likewise.
* doc/c-sh.texi: Likewise.
[gas/testsuite]
2004-04-01 Asgari Jinia <asgarij@kpitcummins.com>
* gas/sh/renesas-1.s, gas/sh/renesas-1.d: New test for -renesas
option.
* gas/sh/basic.exp: Run the new test.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gas/testsuite/gas/sh/basic.exp | 3 | ||||
-rw-r--r-- | gas/testsuite/gas/sh/renesas-1.d | 11 | ||||
-rw-r--r-- | gas/testsuite/gas/sh/renesas-1.s | 3 |
4 files changed, 23 insertions, 0 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 907a2e8..febbce8 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2004-04-01 Asgari Jinia <asgarij@kpitcummins.com> + + * gas/sh/renesas-1.s, gas/sh/renesas-1.d: New test for -renesas + option. + * gas/sh/basic.exp: Run the new test. + 2004-04-01 Dave Korn <dk@artimi.com> * gas/dlx/alltests.exp: Execute new lohi test. diff --git a/gas/testsuite/gas/sh/basic.exp b/gas/testsuite/gas/sh/basic.exp index 9d16e0e..1e72ff1 100644 --- a/gas/testsuite/gas/sh/basic.exp +++ b/gas/testsuite/gas/sh/basic.exp @@ -157,6 +157,9 @@ if [istarget sh*-*-*] then { run_dump_test "tlspic" run_dump_test "tlsnopic" + + # Test -renesas. + run_dump_test "renesas-1" } } diff --git a/gas/testsuite/gas/sh/renesas-1.d b/gas/testsuite/gas/sh/renesas-1.d new file mode 100644 index 0000000..e1c9247 --- /dev/null +++ b/gas/testsuite/gas/sh/renesas-1.d @@ -0,0 +1,11 @@ +#objdump: -dr +#as: -renesas + +.*: +file format .* + +Disassembly of section .text: + +00000000 <foo-0x4>: + 0: 00 00 [ ]*\.word 0x0000 +[ ]+0: R_SH_DIR32 foo + \.\.\. diff --git a/gas/testsuite/gas/sh/renesas-1.s b/gas/testsuite/gas/sh/renesas-1.s new file mode 100644 index 0000000..974b586 --- /dev/null +++ b/gas/testsuite/gas/sh/renesas-1.s @@ -0,0 +1,3 @@ + .text + .long foo +foo: |