diff options
author | Tom Tromey <tom@tromey.com> | 2018-05-20 11:19:14 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-07-16 08:55:18 -0600 |
commit | 5985ac614d7e8ae65faadf62e9302c1c096b5647 (patch) | |
tree | 53f530368220eef99dfa603945ca812c013d87d5 /gdb/ChangeLog | |
parent | 6b84eeb21628a89b40c985b527d3d5db7806c93c (diff) | |
download | gdb-5985ac614d7e8ae65faadf62e9302c1c096b5647.zip gdb-5985ac614d7e8ae65faadf62e9302c1c096b5647.tar.gz gdb-5985ac614d7e8ae65faadf62e9302c1c096b5647.tar.bz2 |
Move within_function to stabsread
The global within_function is only used by a few symbol readers. This
patch moves the global out of buildsym and into stabsread, which
seemed like a better fit. It also arranges for the existing readers
to clear the global at the appropriate time.
gdb/ChangeLog
2018-07-16 Tom Tromey <tom@tromey.com>
* stabsread.h (within_function): Move from buildsym.h.
* stabsread.c (start_stabs): Clear within_function.
* coffread.c (coff_start_symtab): Clear within_function.
* buildsym.h (within_function): Move to stabsread.h.
* buildsym.c (prepare_for_building): Update.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f43ab29..74573a8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,13 @@ 2018-07-16 Tom Tromey <tom@tromey.com> + * stabsread.h (within_function): Move from buildsym.h. + * stabsread.c (start_stabs): Clear within_function. + * coffread.c (coff_start_symtab): Clear within_function. + * buildsym.h (within_function): Move to stabsread.h. + * buildsym.c (prepare_for_building): Update. + +2018-07-16 Tom Tromey <tom@tromey.com> + * stabsread.h (processing_gcc_compilation): Move from buildsym.h. * dwarf2read.c (dwarf2_start_symtab): Don't set processing_gcc_compilation. |