diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2021-11-19 22:15:30 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-02-06 15:48:18 -0500 |
commit | 0d9acb4531cfe336b2b335fbaa1f2ef878a6e4d9 (patch) | |
tree | 1e26fd55ddf025d4587b6f89178a07c3baff0e83 /gdb/buildsym.c | |
parent | ab5f850eed6aba84050d075e8c8a2cb16a876b15 (diff) | |
download | gdb-0d9acb4531cfe336b2b335fbaa1f2ef878a6e4d9.zip gdb-0d9acb4531cfe336b2b335fbaa1f2ef878a6e4d9.tar.gz gdb-0d9acb4531cfe336b2b335fbaa1f2ef878a6e4d9.tar.bz2 |
gdb: remove COMPUNIT_DIRNAME macro, add getter/setter
Add a getter and a setter for a compunit_symtab's dirname. Remove the
corresponding macro and adjust all callers.
Change-Id: If2f39b295fd26822586485e04a8b8b5aa5cc9b2e
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index 2272727..b96d154 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -1005,8 +1005,8 @@ buildsym_compunit::end_symtab_with_blockvector (struct block *static_block, { /* Reallocate the dirname on the symbol obstack. */ const char *comp_dir = m_comp_dir.get (); - COMPUNIT_DIRNAME (cu) = obstack_strdup (&m_objfile->objfile_obstack, - comp_dir); + cu->set_dirname (obstack_strdup (&m_objfile->objfile_obstack, + comp_dir)); } /* Save the debug format string (if any) in the symtab. */ |