2003-09-14 Andrew Cagney <cagney@redhat.com>
* alpha-nat.c: Remove some occurances of "register". * alpha-tdep.c, arm-tdep.c, blockframe.c, breakpoint.c: Ditto. * buildsym.c, c-typeprint.c, c-valprint.c, coffread.c: Ditto. * corefile.c, cp-support.c, cp-valprint.c, cris-tdep.c: Ditto. * dbxread.c, dcache.c, dwarf2read.c, elfread.c: Ditto. * environ.c, eval.c, event-top.c, f-typeprint.c: Ditto. * f-valprint.c, findvar.c, frame.c, gdbtypes.c: Ditto. * h8300-tdep.c, hppa-tdep.c, hppab-nat.c, hppah-nat.c: Ditto. * hppam3-nat.c, hpread.c, ia64-aix-nat.c, ia64-linux-nat.c: Ditto. * infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Ditto. * infttrace.c, irix5-nat.c, jv-typeprint.c: Ditto. * jv-valprint.c, m68k-tdep.c, m68klinux-nat.c, main.c: Ditto. * mdebugread.c, minsyms.c, mips-linux-tdep.c: Ditto. * mips-nat.c, mips-tdep.c, mipsread.c, mipsv4-nat.c: Ditto. * ns32k-tdep.c, objfiles.c, p-typeprint.c: Ditto. * p-valprint.c, ppc-linux-nat.c, printcmd.c: Ditto. * remote-mips.c, remote-vx.c, rs6000-nat.c: Ditto. * rs6000-tdep.c, scm-exp.c, sh-tdep.c, sh64-tdep.c: Ditto. * solib.c, somread.c, source.c, sparc-tdep.c: Ditto. * stabsread.c, stack.c, standalone.c, symfile.c: Ditto. * symmisc.c, symtab.c, top.c, tracepoint.c: Ditto. * typeprint.c, utils.c, valarith.c, valops.c: Ditto. * values.c, vax-tdep.c, xcoffread.c: Ditto.
This commit is contained in:
parent
256ab948f5
commit
52f0bd74b2
85 changed files with 575 additions and 549 deletions
14
gdb/infcmd.c
14
gdb/infcmd.c
|
@ -584,7 +584,7 @@ disable_longjmp_breakpoint_cleanup (void *ignore)
|
|||
static void
|
||||
step_1 (int skip_subroutines, int single_inst, char *count_string)
|
||||
{
|
||||
register int count = 1;
|
||||
int count = 1;
|
||||
struct frame_info *frame;
|
||||
struct cleanup *cleanups = 0;
|
||||
int async_exec = 0;
|
||||
|
@ -806,7 +806,7 @@ which has no line number information.\n", name);
|
|||
static void
|
||||
jump_command (char *arg, int from_tty)
|
||||
{
|
||||
register CORE_ADDR addr;
|
||||
CORE_ADDR addr;
|
||||
struct symtabs_and_lines sals;
|
||||
struct symtab_and_line sal;
|
||||
struct symbol *fn;
|
||||
|
@ -1121,7 +1121,7 @@ print_return_value (int structure_return, struct type *value_type)
|
|||
void
|
||||
finish_command_continuation (struct continuation_arg *arg)
|
||||
{
|
||||
register struct symbol *function;
|
||||
struct symbol *function;
|
||||
struct breakpoint *breakpoint;
|
||||
struct cleanup *cleanups;
|
||||
|
||||
|
@ -1164,8 +1164,8 @@ static void
|
|||
finish_command (char *arg, int from_tty)
|
||||
{
|
||||
struct symtab_and_line sal;
|
||||
register struct frame_info *frame;
|
||||
register struct symbol *function;
|
||||
struct frame_info *frame;
|
||||
struct symbol *function;
|
||||
struct breakpoint *breakpoint;
|
||||
struct cleanup *old_chain;
|
||||
struct continuation_arg *arg1, *arg2, *arg3;
|
||||
|
@ -1366,7 +1366,7 @@ environment_info (char *var, int from_tty)
|
|||
static void
|
||||
set_environment_command (char *arg, int from_tty)
|
||||
{
|
||||
register char *p, *val, *var;
|
||||
char *p, *val, *var;
|
||||
int nullset = 0;
|
||||
|
||||
if (arg == 0)
|
||||
|
@ -1604,7 +1604,7 @@ void
|
|||
registers_info (char *addr_exp, int fpregs)
|
||||
{
|
||||
int regnum, numregs;
|
||||
register char *end;
|
||||
char *end;
|
||||
|
||||
if (!target_has_registers)
|
||||
error ("The program has no registers now.");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue