diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2024-05-16 16:50:22 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2024-07-15 14:34:12 -0400 |
commit | 3bae94c0fb82d5eb9c36c926534fced6db198d82 (patch) | |
tree | a0e9eb77343407a84b9f4d1d8c8694b6ef55ba88 /gdb/compile | |
parent | 9c067e28448f0314d1b0440945e16382a226fd7b (diff) | |
download | binutils-3bae94c0fb82d5eb9c36c926534fced6db198d82.zip binutils-3bae94c0fb82d5eb9c36c926534fced6db198d82.tar.gz binutils-3bae94c0fb82d5eb9c36c926534fced6db198d82.tar.bz2 |
gdb: pass program space to get_current_source_symtab_and_line
Make the current program space reference bubble up one level.
Change-Id: I6ba6dc4a2cb188720cbb61b84ab5c954aac105c6
Approved-By: Tom Tromey <tom@tromey.com>
Reviewed-By: Thiago Jung Bauermann <thiago.bauermann@linaro.org>
Diffstat (limited to 'gdb/compile')
-rw-r--r-- | gdb/compile/compile.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/compile/compile.c b/gdb/compile/compile.c index 88531a2..8896b44 100644 --- a/gdb/compile/compile.c +++ b/gdb/compile/compile.c @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "progspace.h" #include "ui.h" #include "ui-out.h" #include "command.h" @@ -487,7 +488,8 @@ get_expr_block_and_pc (CORE_ADDR *pc) if (block == NULL) { - struct symtab_and_line cursal = get_current_source_symtab_and_line (); + symtab_and_line cursal + = get_current_source_symtab_and_line (current_program_space); if (cursal.symtab) block = cursal.symtab->compunit ()->blockvector ()->static_block (); |