use XNEW and related macros more
[deliverable/binutils-gdb.git] / gas / config / tc-ft32.c
index 56c0a682a6ea57eb45c449d5d14e137ebbddcee4..505d12667fa4da50617ea3542bf444cb96e64199 100644 (file)
@@ -582,9 +582,9 @@ tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixP)
       return 0;
     }
 
-  relP = xmalloc (sizeof (arelent));
+  relP = XNEW (arelent);
   gas_assert (relP != 0);
-  relP->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
+  relP->sym_ptr_ptr = XNEW (asymbol *);
   *relP->sym_ptr_ptr = symbol_get_bfdsym (fixP->fx_addsy);
   relP->address = fixP->fx_frag->fr_address + fixP->fx_where;
 
This page took 0.024865 seconds and 4 git commands to generate.