ns32k: use XOBNEW in another spot

gas/ChangeLog:

2016-06-01  Trevor Saunders  <tbsaunde+binutils@tbsaunde.org>

	* config/tc-ns32k.c (bit_fix_new): Replace obstack-alloc with XOBNEW
	macro.
This commit is contained in:
Trevor Saunders 2016-05-29 01:04:15 -04:00
parent 65ce606bc4
commit 5e429f4cdc
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2016-06-01 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
* config/tc-ns32k.c (bit_fix_new): Replace obstack-alloc with XOBNEW
macro.
2016-06-01 Graham Markall <graham.markall@embecosm.com>
* testsuite/gas/arc/nps-400-1.s: Add rflt variants with

View File

@ -878,7 +878,7 @@ bit_fix_new (int size, /* Length of bitfield. */
{
bit_fixS *bit_fixP;
bit_fixP = obstack_alloc (&notes, sizeof (bit_fixS));
bit_fixP = XOBNEW (&notes, bit_fixS);
bit_fixP->fx_bit_size = size;
bit_fixP->fx_bit_offset = offset;