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 VEC definitions from linespec.c


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

commit 63e8c3daad1eae11cef5b6d1833507d9d4d6b0c0
Author: Keith Seitz <keiths@redhat.com>
Date:   Wed Aug 29 15:12:23 2018 -0700

    Remove VEC definitions from linespec.c
    
    Since they are now no longer necessary, this patch removes the typedefs
    and VEC definitions for bound_minimal_symbol_d and symbolp.
    
    gdb/ChangeLog:
    
    	* linespec.c (symbolp): Remove typedef and VEC definitions.
    	(bound_minimal_symbol_d): Likewise.

Diff:
---
 gdb/ChangeLog  | 5 +++++
 gdb/linespec.c | 7 -------
 2 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 729c20b..b345ec5 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 2018-08-29  Keith Seitz  <keiths@redhat.com>
 
+	* linespec.c (symbolp): Remove typedef and VEC definitions.
+	(bound_minimal_symbol_d): Likewise.
+
+2018-08-29  Keith Seitz  <keiths@redhat.com>
+
 	* linespec.c (decode_compound_collector::decode_compound_collector):
 	Remove initialization for `m_symtabs'.
 	(decode_compound_collector::release_symbols): Change return type
diff --git a/gdb/linespec.c b/gdb/linespec.c
index 3da673e..06ec78b 100644
--- a/gdb/linespec.c
+++ b/gdb/linespec.c
@@ -81,9 +81,6 @@ enum class linespec_complete_what
 
 typedef std::unique_ptr<std::vector<symtab *>> symtab_vector_up;
 
-typedef struct symbol *symbolp;
-DEF_VEC_P (symbolp);
-
 /* An address entry is used to ensure that any given location is only
    added to the result a single time.  It holds an address and the
    program space from which the address came.  */
@@ -94,10 +91,6 @@ struct address_entry
   CORE_ADDR addr;
 };
 
-typedef struct bound_minimal_symbol bound_minimal_symbol_d;
-
-DEF_VEC_O (bound_minimal_symbol_d);
-
 /* A linespec.  Elements of this structure are filled in by a parser
    (either parse_linespec or some other function).  The structure is
    then converted into SALs by convert_linespec_to_sals.  */


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