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.
This commit is contained in:
Tom Tromey
2023-04-21 09:36:54 -06:00
parent d8175bcb7e
commit 0434c3ef8d
9 changed files with 29 additions and 22 deletions

View File

@@ -4546,7 +4546,7 @@ add_line (struct linetable *lt, int lineno, CORE_ADDR adr, int last)
return lineno;
lt->item[lt->nitems].line = lineno;
lt->item[lt->nitems++].set_raw_pc (unrelocated_addr (adr << 2));
lt->item[lt->nitems++].set_unrelocated_pc (unrelocated_addr (adr << 2));
return lineno;
}