mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
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:
@ -249,8 +249,8 @@ obsavestring (const char *ptr, int size, struct obstack *obstackp)
|
||||
short. FIXME: Is this really still true with a compiler that can
|
||||
inline memcpy? */
|
||||
{
|
||||
register const char *p1 = ptr;
|
||||
register char *p2 = p;
|
||||
const char *p1 = ptr;
|
||||
char *p2 = p;
|
||||
const char *end = ptr + size;
|
||||
while (p1 != end)
|
||||
*p2++ = *p1++;
|
||||
@ -290,7 +290,7 @@ decrement_reading_symtab (void *dummy)
|
||||
case inline. */
|
||||
|
||||
struct symtab *
|
||||
psymtab_to_symtab (register struct partial_symtab *pst)
|
||||
psymtab_to_symtab (struct partial_symtab *pst)
|
||||
{
|
||||
/* If it's been looked up before, return it. */
|
||||
if (pst->symtab)
|
||||
|
Reference in New Issue
Block a user