aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2023-04-21 09:36:54 -0600
committerTom Tromey <tromey@adacore.com>2023-06-05 09:59:18 -0600
commit0434c3ef8dc4cfa17e6bce21da206e312f5722fb (patch)
tree26d7ef80161a08f1797f880f329a67e6685ea23b /gdb/symtab.h
parentd8175bcb7e35fb98ef40c458c8475a6d7122d813 (diff)
downloadbinutils-0434c3ef8dc4cfa17e6bce21da206e312f5722fb.zip
binutils-0434c3ef8dc4cfa17e6bce21da206e312f5722fb.tar.gz
binutils-0434c3ef8dc4cfa17e6bce21da206e312f5722fb.tar.bz2
Use "unrelocated" terminology in linetable_entry
I forgot to convert struct linetable_entry to use the "unrelocated" (as opposed to "raw") terminology. This patch corrects the oversight.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r--gdb/symtab.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h
index abfcb34..ee4729b 100644
--- a/gdb/symtab.h
+++ b/gdb/symtab.h
@@ -1583,11 +1583,11 @@ struct rust_vtable_symbol : public symbol
struct linetable_entry
{
/* Set the (unrelocated) PC for this entry. */
- void set_raw_pc (unrelocated_addr pc)
+ void set_unrelocated_pc (unrelocated_addr pc)
{ m_pc = pc; }
/* Return the unrelocated PC for this entry. */
- unrelocated_addr raw_pc () const
+ unrelocated_addr unrelocated_pc () const
{ return m_pc; }
/* Return the relocated PC for this entry. */
@@ -1616,6 +1616,8 @@ struct linetable_entry
function prologue. */
bool prologue_end : 1;
+private:
+
/* The address for this entry. */
unrelocated_addr m_pc;
};