diff options
author | Tom Tromey <tom@tromey.com> | 2023-03-20 16:03:05 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-03-28 15:12:44 -0600 |
commit | 93d50cd8f0b59aed37a3a0e69155dd34d5a3c1f1 (patch) | |
tree | 6b6b260ef4e16838bc8a0a6df54c37a827bfd37f /gdb/printcmd.c | |
parent | 9675da25357c7a3f472731ddc6eb3becc65b469a (diff) | |
download | binutils-93d50cd8f0b59aed37a3a0e69155dd34d5a3c1f1.zip binutils-93d50cd8f0b59aed37a3a0e69155dd34d5a3c1f1.tar.gz binutils-93d50cd8f0b59aed37a3a0e69155dd34d5a3c1f1.tar.bz2 |
Rename "raw" to "unrelocated"
Per an earlier discussion, this patch renames the existing "raw" APIs
to use the word "unrelocated" instead.
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r-- | gdb/printcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c index d4b3cce..dd92e31 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -1824,7 +1824,7 @@ info_address_command (const char *exp, int from_tty) if (section && (section->the_bfd_section->flags & SEC_THREAD_LOCAL) != 0) { - load_addr = CORE_ADDR (msym.minsym->value_raw_address ()); + load_addr = CORE_ADDR (msym.minsym->unrelocated_address ()); gdb_printf (_("a thread-local variable at offset %s " "in the thread-local storage for `%s'"), paddress (gdbarch, load_addr), |