diff options
author | Joern Rennecke <joern.rennecke@embecosm.com> | 2003-04-23 21:09:04 +0000 |
---|---|---|
committer | Joern Rennecke <joern.rennecke@embecosm.com> | 2003-04-23 21:09:04 +0000 |
commit | ef23021837539a0b98c7761a62f0fb316a82a9de (patch) | |
tree | 2a7ad7236c923da4bf87eee8959ad4f7bca110f8 /gas/config | |
parent | ebc7896c3ce2248ea34b8c3f162ac590126840d5 (diff) | |
download | gdb-ef23021837539a0b98c7761a62f0fb316a82a9de.zip gdb-ef23021837539a0b98c7761a62f0fb316a82a9de.tar.gz gdb-ef23021837539a0b98c7761a62f0fb316a82a9de.tar.bz2 |
bfd:
* archures.c (enum bfd_architecture): Amend comment to refer to SuperH.
* cpu-sh.c: Likewise.
* elf32-sh.c: Likewise.
* reloc.c (bfd_reloc_code_real): Likewise.
* elf32-sh64-com.c: Change comment to refer to SuperH.
* elf32-sh64.c: Likewise.
* elf64-sh64.c: Likewise.
* bfd-in2.h (enum bfd_architecture): Regenerate.
binutils:
* readelf.c (get_machine_name) <EM_SH>: Amend return value
to refer to SuperH.
gas:
* config/tc-sh.c: Amend comment to refer to SuperH.
* config/tc-sh.h: Likewise.
(LISTING_HEADER): Amend to refer to SuperH.
* config/tc-sh64.c: Change comment to refer to SuperH.
* config/tc-sh64.h (LISTING_HEADER): Change to refer to SuperH.
* doc/as.texinfo [SH, GENERIC]: Amend / Change to refer to SuperH.
* doc/c-sh.texi: Amend to refer to SuperH.
Add SuperH architecture documentation references.
* doc/c-sh64.texi: Change to refer to SuperH.
include/elf:
* common.h (EM_SH): Amend comment to refer to SuperH.
ld/testsuite:
* ld-sh/sh64/crange3-cmpct.rd (Machine): Change to refer to SuperH.
* ld-sh/sh64/crange3-media.rd (Machine): Likewise.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-sh.c | 2 | ||||
-rw-r--r-- | gas/config/tc-sh.h | 3 | ||||
-rw-r--r-- | gas/config/tc-sh64.c | 2 | ||||
-rw-r--r-- | gas/config/tc-sh64.h | 4 |
4 files changed, 6 insertions, 5 deletions
diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c index 1303d23..8c58ce3 100644 --- a/gas/config/tc-sh.c +++ b/gas/config/tc-sh.c @@ -1,4 +1,4 @@ -/* tc-sh.c -- Assemble code for the Renesas Super-H +/* tc-sh.c -- Assemble code for the Renesas / SuperH SH Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. diff --git a/gas/config/tc-sh.h b/gas/config/tc-sh.h index bc619c7..9923162 100644 --- a/gas/config/tc-sh.h +++ b/gas/config/tc-sh.h @@ -101,7 +101,8 @@ extern long md_pcrel_from_section PARAMS ((struct fix *, segT)); #define LISTING_HEADER \ (!target_big_endian \ - ? "Renesas Super-H GAS Little Endian" : "Renesas Super-H GAS Big Endian") + ? "Renesas / SuperH SH GAS Little Endian" \ + : "Renesas / SuperH SH GAS Big Endian") #define md_operand(x) diff --git a/gas/config/tc-sh64.c b/gas/config/tc-sh64.c index 9b2c9d6..ee63b0e 100644 --- a/gas/config/tc-sh64.c +++ b/gas/config/tc-sh64.c @@ -1,4 +1,4 @@ -/* tc-sh64.c -- Assemble code for the Renesas Super-H SHcompact and SHmedia. +/* tc-sh64.c -- Assemble code for the SuperH SH SHcompact and SHmedia. Copyright 2000, 2001, 2002, 2003 Free Software Foundation. This file is part of GAS, the GNU Assembler. diff --git a/gas/config/tc-sh64.h b/gas/config/tc-sh64.h index f04f3ec..888ad99 100644 --- a/gas/config/tc-sh64.h +++ b/gas/config/tc-sh64.h @@ -37,8 +37,8 @@ extern int sh64_max_mem_for_rs_align_code PARAMS ((void)); #undef LISTING_HEADER #define LISTING_HEADER \ (target_big_endian ? \ - "Renesas SHcompact/SHmedia Big Endian GAS" \ - : "Renesas SHcompact/SHmedia Little Endian GAS") + "SuperH SHcompact/SHmedia Big Endian GAS" \ + : "SuperH SHcompact/SHmedia Little Endian GAS") /* We need to record the new frag position after an .align. */ extern void sh64_do_align PARAMS ((int, const char *, int, int)); |