]> gcc.gnu.org Git - gcc.git/commitdiff
(before functions): Remove xmalloc decl.
authorTorbjorn Granlund <tege@gnu.org>
Sat, 5 Sep 1992 22:51:40 +0000 (22:51 +0000)
committerTorbjorn Granlund <tege@gnu.org>
Sat, 5 Sep 1992 22:51:40 +0000 (22:51 +0000)
(arm_asm_output_label): Cast value from xmalloc.

From-SVN: r2058

gcc/config/arm/arm.c

index 8ef04c4cdf5662a653ad4f00a9546c077a989a70..2beeae72382cbb9392f599cb396cbb6f5f674b11 100644 (file)
@@ -38,7 +38,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define MAX_INSNS_SKIPPED  5
 
 /* Some function declarations.  */
-extern void *xmalloc ();
 extern FILE *asm_out_file;
 extern char *output_multi_immediate ();
 extern char *arm_output_asm_insn ();
@@ -1012,7 +1011,7 @@ arm_asm_output_label (stream, name)
   for (s = real_name; *s; s++)
     hash += *s;
   hash = hash % LABEL_HASH_SIZE;
-  cur = xmalloc (sizeof (struct label_offset));
+  cur = (struct label_offset *) xmalloc (sizeof (struct label_offset));
   cur->name = real_name;
   cur->offset = arm_text_location;
   cur->cdr = offset_table[hash];
This page took 0.058535 seconds and 5 git commands to generate.