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
|
@ -1158,8 +1158,8 @@ value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
|
|||
int
|
||||
value_logical_not (struct value *arg1)
|
||||
{
|
||||
register int len;
|
||||
register char *p;
|
||||
int len;
|
||||
char *p;
|
||||
struct type *type1;
|
||||
|
||||
COERCE_NUMBER (arg1);
|
||||
|
@ -1216,8 +1216,8 @@ value_strcmp (struct value *arg1, struct value *arg2)
|
|||
int
|
||||
value_equal (struct value *arg1, struct value *arg2)
|
||||
{
|
||||
register int len;
|
||||
register char *p1, *p2;
|
||||
int len;
|
||||
char *p1, *p2;
|
||||
struct type *type1, *type2;
|
||||
enum type_code code1;
|
||||
enum type_code code2;
|
||||
|
@ -1275,8 +1275,8 @@ value_equal (struct value *arg1, struct value *arg2)
|
|||
int
|
||||
value_less (struct value *arg1, struct value *arg2)
|
||||
{
|
||||
register enum type_code code1;
|
||||
register enum type_code code2;
|
||||
enum type_code code1;
|
||||
enum type_code code2;
|
||||
struct type *type1, *type2;
|
||||
|
||||
COERCE_NUMBER (arg1);
|
||||
|
@ -1317,8 +1317,8 @@ value_less (struct value *arg1, struct value *arg2)
|
|||
struct value *
|
||||
value_neg (struct value *arg1)
|
||||
{
|
||||
register struct type *type;
|
||||
register struct type *result_type = VALUE_TYPE (arg1);
|
||||
struct type *type;
|
||||
struct type *result_type = VALUE_TYPE (arg1);
|
||||
|
||||
COERCE_REF (arg1);
|
||||
COERCE_ENUM (arg1);
|
||||
|
@ -1346,8 +1346,8 @@ value_neg (struct value *arg1)
|
|||
struct value *
|
||||
value_complement (struct value *arg1)
|
||||
{
|
||||
register struct type *type;
|
||||
register struct type *result_type = VALUE_TYPE (arg1);
|
||||
struct type *type;
|
||||
struct type *result_type = VALUE_TYPE (arg1);
|
||||
int typecode;
|
||||
|
||||
COERCE_REF (arg1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue