diff options
author | Tom Tromey <tom@tromey.com> | 2023-03-17 16:37:15 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-03-28 15:12:43 -0600 |
commit | 584d0cdac2b1fee77adb587052decfce12077469 (patch) | |
tree | 011aa24c2e4e17e2fed576477db52cc1773005dc /gdb/stabsread.h | |
parent | 257c302c6952fb77af456a44f2ab117fa290c01b (diff) | |
download | binutils-584d0cdac2b1fee77adb587052decfce12077469.zip binutils-584d0cdac2b1fee77adb587052decfce12077469.tar.gz binutils-584d0cdac2b1fee77adb587052decfce12077469.tar.bz2 |
Use unrelocated_addr in partial symbol tables
This changes partial symbol tables to use unrelocated_addr for the
text_high and text_low members. This revealed some latent bugs in
ctfread.c, which are fixed here.
Diffstat (limited to 'gdb/stabsread.h')
-rw-r--r-- | gdb/stabsread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stabsread.h b/gdb/stabsread.h index 9df79bc..27ba176 100644 --- a/gdb/stabsread.h +++ b/gdb/stabsread.h @@ -175,7 +175,7 @@ extern legacy_psymtab *dbx_end_psymtab (struct objfile *objfile, psymtab_storage *partial_symtabs, legacy_psymtab *pst, const char **include_list, int num_includes, - int capping_symbol_offset, CORE_ADDR capping_text, + int capping_symbol_offset, unrelocated_addr capping_text, legacy_psymtab **dependency_list, int number_dependencies, int textlow_not_set); |