Fri Apr 24 12:47:42 1998 Philippe De Muyter <phdm@macqel.be>

* read.c (s_set): Cast xmalloc return value to fragS *.
	* config/tc-m68k.c (m68k_ip): Function made static to match
	previous forward declaration.
	(insert_reg, init_regtable, md_convert_frag_1): Likewise.
This commit is contained in:
Ian Lance Taylor
1998-04-24 16:49:58 +00:00
parent 682639a81f
commit 0917e2cbea
3 changed files with 13 additions and 6 deletions

View File

@ -1,9 +1,16 @@
Fri Apr 24 12:47:42 1998 Philippe De Muyter <phdm@macqel.be>
* read.c (s_set): Cast xmalloc return value to fragS *.
* config/tc-m68k.c (m68k_ip): Function made static to match
previous forward declaration.
(insert_reg, init_regtable, md_convert_frag_1): Likewise.
Fri Apr 24 09:26:46 1998 Nick Clifton <nickc@cygnus.com> Fri Apr 24 09:26:46 1998 Nick Clifton <nickc@cygnus.com>
* config/tc-v850.c: Add internationalisation macros to error * config/tc-v850.c: Add internationalisation macros to error
strings. strings.
* config/tc-m32r.c (can_make_parallel): Add initernationalisation * config/tc-m32r.c (can_make_parallel): Add internationalisation
macros to error strings. macros to error strings.
Thu Apr 23 19:23:23 1998 Ian Lance Taylor <ian@cygnus.com> Thu Apr 23 19:23:23 1998 Ian Lance Taylor <ian@cygnus.com>

View File

@ -924,7 +924,7 @@ static struct hash_control *op_hash;
/* Assemble an m68k instruction. */ /* Assemble an m68k instruction. */
void static void
m68k_ip (instring) m68k_ip (instring)
char *instring; char *instring;
{ {
@ -3125,7 +3125,7 @@ crack_operand (str, opP)
the frags/bytes it assembles to. the frags/bytes it assembles to.
*/ */
void static void
insert_reg (regname, regnum) insert_reg (regname, regnum)
const char *regname; const char *regname;
int regnum; int regnum;
@ -3321,7 +3321,7 @@ static const struct init_entry init_table[] =
{ 0, 0 } { 0, 0 }
}; };
void static void
init_regtable () init_regtable ()
{ {
int i; int i;
@ -4110,7 +4110,7 @@ void md_apply_fix (fixP, val)
the bytes inside it modified to conform to the new size There is UGLY the bytes inside it modified to conform to the new size There is UGLY
MAGIC here. .. MAGIC here. ..
*/ */
void static void
md_convert_frag_1 (fragP) md_convert_frag_1 (fragP)
register fragS *fragP; register fragS *fragP;
{ {

View File

@ -2710,7 +2710,7 @@ s_set (equiv)
if (listing & LISTING_SYMBOLS) if (listing & LISTING_SYMBOLS)
{ {
extern struct list_info_struct *listing_tail; extern struct list_info_struct *listing_tail;
fragS *dummy_frag = xmalloc (sizeof(fragS)); fragS *dummy_frag = (fragS *) xmalloc (sizeof(fragS));
memset (dummy_frag, 0, sizeof(fragS)); memset (dummy_frag, 0, sizeof(fragS));
dummy_frag->fr_type = rs_fill; dummy_frag->fr_type = rs_fill;
dummy_frag->line = listing_tail; dummy_frag->line = listing_tail;