forked from Imagelibrary/binutils-gdb
2003-09-16 Andrew Cagney <cagney@redhat.com>
* buildsym.c: Remove more occurances of "register". * coffread.c, dbxread.c, dcache.c, dwarf2read.c: Ditto. * environ.c, eval.c, f-valprint.c, findvar.c: Ditto. * gdbtypes.c, gnu-v2-abi.c, h8300-tdep.c, hppa-tdep.c: Ditto. * infcmd.c, mdebugread.c, minsyms.c, mips-tdep.c: Ditto. * printcmd.c, remote-vx.c, sh-stub.c, sh-tdep.c: Ditto. * sh64-tdep.c, source.c, stabsread.c, stack.c: Ditto. * standalone.c, symfile.c, symmisc.c, symtab.c: Ditto. * utils.c, valops.c, values.c, xcoffread.c: Ditto.
This commit is contained in:
@@ -313,7 +313,7 @@ cs_section_address (struct coff_symbol *cs, bfd *abfd)
|
||||
or for associating a new type with the index. */
|
||||
|
||||
static struct type **
|
||||
coff_lookup_type (register int index)
|
||||
coff_lookup_type (int index)
|
||||
{
|
||||
if (index >= type_vector_length)
|
||||
{
|
||||
@@ -1119,9 +1119,9 @@ coff_symtab_read (long symtab_offset, unsigned int nsyms,
|
||||
in internal_auxent form, and skip any other auxents. */
|
||||
|
||||
static void
|
||||
read_one_sym (register struct coff_symbol *cs,
|
||||
register struct internal_syment *sym,
|
||||
register union internal_auxent *aux)
|
||||
read_one_sym (struct coff_symbol *cs,
|
||||
struct internal_syment *sym,
|
||||
union internal_auxent *aux)
|
||||
{
|
||||
int i;
|
||||
|
||||
@@ -1348,8 +1348,8 @@ free_linetab_cleanup (void *ignore)
|
||||
#endif
|
||||
|
||||
static void
|
||||
enter_linenos (long file_offset, register int first_line,
|
||||
register int last_line, struct objfile *objfile)
|
||||
enter_linenos (long file_offset, int first_line,
|
||||
int last_line, struct objfile *objfile)
|
||||
{
|
||||
char *rawptr;
|
||||
struct internal_lineno lptr;
|
||||
@@ -1431,9 +1431,9 @@ patch_opaque_types (struct symtab *s)
|
||||
TYPE_CODE (SYMBOL_TYPE (real_sym)) == TYPE_CODE_PTR &&
|
||||
TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (real_sym))) != 0)
|
||||
{
|
||||
register char *name = DEPRECATED_SYMBOL_NAME (real_sym);
|
||||
register int hash = hashname (name);
|
||||
register struct symbol *sym, *prev;
|
||||
char *name = DEPRECATED_SYMBOL_NAME (real_sym);
|
||||
int hash = hashname (name);
|
||||
struct symbol *sym, *prev;
|
||||
|
||||
prev = 0;
|
||||
for (sym = opaque_type_chain[hash]; sym;)
|
||||
@@ -1472,8 +1472,8 @@ patch_opaque_types (struct symtab *s)
|
||||
}
|
||||
|
||||
static struct symbol *
|
||||
process_coff_symbol (register struct coff_symbol *cs,
|
||||
register union internal_auxent *aux,
|
||||
process_coff_symbol (struct coff_symbol *cs,
|
||||
union internal_auxent *aux,
|
||||
struct objfile *objfile)
|
||||
{
|
||||
struct symbol *sym
|
||||
@@ -1659,7 +1659,7 @@ process_coff_symbol (register struct coff_symbol *cs,
|
||||
TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) !=
|
||||
TYPE_CODE_UNDEF)
|
||||
{
|
||||
register int i = hashname (DEPRECATED_SYMBOL_NAME (sym));
|
||||
int i = hashname (DEPRECATED_SYMBOL_NAME (sym));
|
||||
|
||||
SYMBOL_VALUE_CHAIN (sym) = opaque_type_chain[i];
|
||||
opaque_type_chain[i] = sym;
|
||||
@@ -1696,8 +1696,8 @@ process_coff_symbol (register struct coff_symbol *cs,
|
||||
/* Decode a coff type specifier; return the type that is meant. */
|
||||
|
||||
static struct type *
|
||||
decode_type (register struct coff_symbol *cs, unsigned int c_type,
|
||||
register union internal_auxent *aux)
|
||||
decode_type (struct coff_symbol *cs, unsigned int c_type,
|
||||
union internal_auxent *aux)
|
||||
{
|
||||
struct type *type = 0;
|
||||
unsigned int new_c_type;
|
||||
@@ -1718,7 +1718,7 @@ decode_type (register struct coff_symbol *cs, unsigned int c_type,
|
||||
else if (ISARY (c_type))
|
||||
{
|
||||
int i, n;
|
||||
register unsigned short *dim;
|
||||
unsigned short *dim;
|
||||
struct type *base_type, *index_type, *range_type;
|
||||
|
||||
/* Define an array type. */
|
||||
@@ -1777,8 +1777,8 @@ decode_type (register struct coff_symbol *cs, unsigned int c_type,
|
||||
return the type that the function returns. */
|
||||
|
||||
static struct type *
|
||||
decode_function_type (register struct coff_symbol *cs, unsigned int c_type,
|
||||
register union internal_auxent *aux)
|
||||
decode_function_type (struct coff_symbol *cs, unsigned int c_type,
|
||||
union internal_auxent *aux)
|
||||
{
|
||||
if (aux->x_sym.x_tagndx.l == 0)
|
||||
cs->c_naux = 0; /* auxent refers to function, not base type */
|
||||
@@ -1789,8 +1789,8 @@ decode_function_type (register struct coff_symbol *cs, unsigned int c_type,
|
||||
/* basic C types */
|
||||
|
||||
static struct type *
|
||||
decode_base_type (register struct coff_symbol *cs, unsigned int c_type,
|
||||
register union internal_auxent *aux)
|
||||
decode_base_type (struct coff_symbol *cs, unsigned int c_type,
|
||||
union internal_auxent *aux)
|
||||
{
|
||||
struct type *type;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user