diff options
author | Tom Tromey <tom@tromey.com> | 2018-05-22 22:47:15 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-07-20 09:42:56 -0600 |
commit | bfe2e011c004b88687ae4514cfdb00072a9cee63 (patch) | |
tree | 1a1286e22daad178bddaf8a71e6bbe7b45dcc525 /gdb/buildsym-legacy.h | |
parent | 0e6f30610fdb50b4974b349ed3673b744d03e9a9 (diff) | |
download | gdb-bfe2e011c004b88687ae4514cfdb00072a9cee63.zip gdb-bfe2e011c004b88687ae4514cfdb00072a9cee63.tar.gz gdb-bfe2e011c004b88687ae4514cfdb00072a9cee63.tar.bz2 |
Remove record_line_ftype
The record_line_ftype typedef was only used in the DWARF reader, and
we removed those uses a few patches ago. So, remove the typedef.
gdb/ChangeLog
2018-07-20 Tom Tromey <tom@tromey.com>
* buildsym-legacy.h (record_line): Don't use record_line_ftype.
* buildsym.h (record_line_ftype): Remove typedef.
Diffstat (limited to 'gdb/buildsym-legacy.h')
-rw-r--r-- | gdb/buildsym-legacy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/buildsym-legacy.h b/gdb/buildsym-legacy.h index aaa9152..ed825b4 100644 --- a/gdb/buildsym-legacy.h +++ b/gdb/buildsym-legacy.h @@ -79,7 +79,7 @@ extern struct context_stack *push_context (int desc, CORE_ADDR valu); extern struct context_stack pop_context (); -extern record_line_ftype record_line; +extern void record_line (struct subfile *subfile, int line, CORE_ADDR pc); extern struct compunit_symtab *start_symtab (struct objfile *objfile, const char *name, |