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/xcoffread.c | |
parent | 9675da25357c7a3f472731ddc6eb3becc65b469a (diff) | |
download | gdb-93d50cd8f0b59aed37a3a0e69155dd34d5a3c1f1.zip gdb-93d50cd8f0b59aed37a3a0e69155dd34d5a3c1f1.tar.gz gdb-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/xcoffread.c')
-rw-r--r-- | gdb/xcoffread.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index 2a27bc3..d71127b 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -2177,11 +2177,12 @@ scan_xcoff_symtab (minimal_symbol_reader &reader, = unrelocated_addr (symbol.n_value + CSECT_LEN (&csect_aux)); - if (highval > pst->raw_text_high ()) + if (highval > pst->unrelocated_text_high ()) pst->set_text_high (highval); unrelocated_addr loval = unrelocated_addr (symbol.n_value); - if (!pst->text_low_valid || loval < pst->raw_text_low ()) + if (!pst->text_low_valid + || loval < pst->unrelocated_text_low ()) pst->set_text_low (loval); } misc_func_recorded = 0; |