2001-07-01 Ben Elliston <bje@redhat.com>

* config/tc-m88k.c: Back out warning fixes from 2001-06-24, as
	they cause some subtle breakage.  Will fix them again later.
This commit is contained in:
Ben Elliston
2001-07-01 06:36:43 +00:00
parent 551b1d8931
commit bd59b34f1e
2 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2001-07-01 Ben Elliston <bje@redhat.com>
* config/tc-m88k.c: Back out warning fixes from 2001-06-24, as
they cause some subtle breakage. Will fix them again later.
2001-06-28 Nick Clifton <nickc@cambridge.redhat.com> 2001-06-28 Nick Clifton <nickc@cambridge.redhat.com>
* config/obj-coff.c (obj_coff_ln): Treat a .ln directive * config/obj-coff.c (obj_coff_ln): Treat a .ln directive

View File

@ -129,7 +129,7 @@ static char *get_cr PARAMS ((char *param, unsigned *regnop));
static char *get_fcr PARAMS ((char *param, unsigned *regnop)); static char *get_fcr PARAMS ((char *param, unsigned *regnop));
static char *get_imm16 PARAMS ((char *param, struct m88k_insn *insn)); static char *get_imm16 PARAMS ((char *param, struct m88k_insn *insn));
static char *get_o6 PARAMS ((char *param, unsigned *valp)); static char *get_o6 PARAMS ((char *param, unsigned *valp));
static char *get_reg PARAMS ((char *param, unsigned *regnop, char reg_prefix)); static char *get_reg PARAMS ((char *param, unsigned *regnop, int reg_prefix));
static char *get_vec9 PARAMS ((char *param, unsigned *valp)); static char *get_vec9 PARAMS ((char *param, unsigned *valp));
static char *getval PARAMS ((char *param, unsigned int *valp)); static char *getval PARAMS ((char *param, unsigned int *valp));
@ -334,7 +334,7 @@ calcop (format, param, insn)
int f; int f;
unsigned val; unsigned val;
unsigned opcode; unsigned opcode;
char reg_prefix = 'r'; int reg_prefix = 'r';
insn->opcode = format->opcode; insn->opcode = format->opcode;
opcode = 0; opcode = 0;
@ -466,9 +466,9 @@ static char *
get_reg (param, regnop, reg_prefix) get_reg (param, regnop, reg_prefix)
char *param; char *param;
unsigned *regnop; unsigned *regnop;
char reg_prefix; int reg_prefix;
{ {
char c; unsigned c;
unsigned regno; unsigned regno;
c = *param++; c = *param++;
@ -899,7 +899,7 @@ getval (param, valp)
unsigned int *valp; unsigned int *valp;
{ {
unsigned int val = 0; unsigned int val = 0;
char c; unsigned int c;
c = *param++; c = *param++;
if (c == '0') if (c == '0')