Fri Apr 24 12:47:42 1998 Philippe De Muyter <phdm@macqel.be>
authorIan Lance Taylor <ian@airs.com>
Fri, 24 Apr 1998 16:49:58 +0000 (16:49 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 24 Apr 1998 16:49:58 +0000 (16:49 +0000)
* 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
gas/config/tc-m68k.c
gas/read.c

index 4b5d32b..e3a88ac 100644 (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>
 
        * 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  <ian@cygnus.com>
index 496d29e..b47df0a 100644 (file)
@@ -924,7 +924,7 @@ static struct hash_control *op_hash;
 \f
 /* 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;
 {
index 331a256..8e06d85 100644 (file)
@@ -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;