From 0434c3ef8dc4cfa17e6bce21da206e312f5722fb Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 21 Apr 2023 09:36:54 -0600 Subject: 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. --- gdb/buildsym.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/buildsym.c') diff --git a/gdb/buildsym.c b/gdb/buildsym.c index d12ad21..832b689 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -653,7 +653,7 @@ buildsym_compunit::record_line (struct subfile *subfile, int line, linetable_entry *last = &subfile->line_vector_entries.back (); last_line = last->line; - if (last->raw_pc () != pc) + if (last->unrelocated_pc () != pc) break; subfile->line_vector_entries.pop_back (); @@ -668,7 +668,7 @@ buildsym_compunit::record_line (struct subfile *subfile, int line, linetable_entry &e = subfile->line_vector_entries.back (); e.line = line; e.is_stmt = (flags & LEF_IS_STMT) != 0; - e.set_raw_pc (pc); + e.set_unrelocated_pc (pc); e.prologue_end = (flags & LEF_PROLOGUE_END) != 0; } -- cgit v1.1