read.c assign_symbol: use notes obstack for dummy listing frag
* read.c (assign_symbol): Use notes_calloc for dummy_frag.
This commit is contained in:
parent
825816f1cc
commit
714ccdeb99
1 changed files with 1 additions and 1 deletions
|
@ -3094,7 +3094,7 @@ assign_symbol (char *name, int mode)
|
|||
if (listing & LISTING_SYMBOLS)
|
||||
{
|
||||
extern struct list_info_struct *listing_tail;
|
||||
fragS *dummy_frag = XCNEW (fragS);
|
||||
fragS *dummy_frag = notes_calloc (1, sizeof (*dummy_frag));
|
||||
dummy_frag->line = listing_tail;
|
||||
dummy_frag->fr_symbol = symbolP;
|
||||
symbol_set_frag (symbolP, dummy_frag);
|
||||
|
|
Loading…
Add table
Reference in a new issue