This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] ns32k: use XOBNEW in another spot


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=5e429f4cdcf2e0bf12309c843ffb3b2619bcb287

commit 5e429f4cdcf2e0bf12309c843ffb3b2619bcb287
Author: Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
Date:   Sun May 29 01:04:15 2016 -0400

    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.

Diff:
---
 gas/ChangeLog         | 5 +++++
 gas/config/tc-ns32k.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index ece6e4a..0dcdcef 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -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
diff --git a/gas/config/tc-ns32k.c b/gas/config/tc-ns32k.c
index 86a1de7..3c84ac2 100644
--- a/gas/config/tc-ns32k.c
+++ b/gas/config/tc-ns32k.c
@@ -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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]