From 0917e2cbeacdcfa634a6efa450a86bee8b989adb Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 24 Apr 1998 16:49:58 +0000 Subject: [PATCH] Fri Apr 24 12:47:42 1998 Philippe De Muyter * 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. --- gas/ChangeLog | 9 ++++++++- gas/config/tc-m68k.c | 8 ++++---- gas/read.c | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 4b5d32b475..e3a88aced2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,9 +1,16 @@ +Fri Apr 24 12:47:42 1998 Philippe De Muyter + + * 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 * config/tc-v850.c: Add internationalisation macros to error strings. - * config/tc-m32r.c (can_make_parallel): Add initernationalisation + * config/tc-m32r.c (can_make_parallel): Add internationalisation macros to error strings. Thu Apr 23 19:23:23 1998 Ian Lance Taylor diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c index 496d29e65c..b47df0af56 100644 --- a/gas/config/tc-m68k.c +++ b/gas/config/tc-m68k.c @@ -924,7 +924,7 @@ static struct hash_control *op_hash; /* Assemble an m68k instruction. */ -void +static void m68k_ip (instring) char *instring; { @@ -3125,7 +3125,7 @@ crack_operand (str, opP) the frags/bytes it assembles to. */ -void +static void insert_reg (regname, regnum) const char *regname; int regnum; @@ -3321,7 +3321,7 @@ static const struct init_entry init_table[] = { 0, 0 } }; -void +static void init_regtable () { 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 MAGIC here. .. */ -void +static void md_convert_frag_1 (fragP) register fragS *fragP; { diff --git a/gas/read.c b/gas/read.c index 331a2561cc..8e06d85281 100644 --- a/gas/read.c +++ b/gas/read.c @@ -2710,7 +2710,7 @@ s_set (equiv) if (listing & LISTING_SYMBOLS) { 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)); dummy_frag->fr_type = rs_fill; dummy_frag->line = listing_tail; -- 2.34.1