This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Remove record_line_ftype


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=bfe2e011c004b88687ae4514cfdb00072a9cee63

commit bfe2e011c004b88687ae4514cfdb00072a9cee63
Author: Tom Tromey <tom@tromey.com>
Date:   Tue May 22 22:47:15 2018 -0600

    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.

Diff:
---
 gdb/ChangeLog         | 5 +++++
 gdb/buildsym-legacy.h | 2 +-
 gdb/buildsym.h        | 4 ----
 3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 9f9b8e3..c02fb53 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 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.
+
+2018-07-20  Tom Tromey  <tom@tromey.com>
+
 	* buildsym-legacy.h (augment_type_symtab): Don't declare.
 	(end_expandable_symtab): Likewise.
 	(end_symtab_get_static_block): Likewise.
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,
diff --git a/gdb/buildsym.h b/gdb/buildsym.h
index 36b3e99..141adfd 100644
--- a/gdb/buildsym.h
+++ b/gdb/buildsym.h
@@ -396,10 +396,6 @@ private:
   struct pending *m_local_symbols = nullptr;
 };
 
-/* The type of the record_line function.  */
-typedef void (record_line_ftype) (struct subfile *subfile, int line,
-				  CORE_ADDR pc);
-
 
 
 extern void add_symbol_to_list (struct symbol *symbol,


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]