Remove free_char_ptr_vec
authorSimon Marchi <simon.marchi@polymtl.ca>
Sat, 3 Mar 2018 04:22:10 +0000 (23:22 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Sat, 3 Mar 2018 04:22:10 +0000 (23:22 -0500)
Nothing is using it anymore.

gdb/ChangeLog:

* common/gdb_vecs.c (free_char_ptr_vec): Remove.
* common/gdb_vecs.h (free_char_ptr_vec): Remove.

gdb/ChangeLog
gdb/common/gdb_vecs.c
gdb/common/gdb_vecs.h

index 13779a133de327ee54f367c8bbe2e3910a6303a7..074bf08cd2c89ecc5b288b5148743c3c834acdfe 100644 (file)
@@ -1,3 +1,8 @@
+2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * common/gdb_vecs.c (free_char_ptr_vec): Remove.
+       * common/gdb_vecs.h (free_char_ptr_vec): Remove.
+
 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * charset.c (struct charset_vector): New.
index a19d238b3ee1e0c53200e2490b3327a95d37b036..445793e42091b9a07a8a01943e72287d3175fe6b 100644 (file)
 #include "gdb_vecs.h"
 #include "host-defs.h"
 
-/* Call xfree for each element of CHAR_PTR_VEC and final VEC_free for
-   CHAR_PTR_VEC itself.
-
-   You must not modify CHAR_PTR_VEC after it got registered with this function
-   by make_cleanup as the CHAR_PTR_VEC base address may change on its updates.
-   Contrary to VEC_free this function does not (cannot) clear the pointer.  */
-
-void
-free_char_ptr_vec (VEC (char_ptr) *char_ptr_vec)
-{
-  int ix;
-  char *name;
-
-  for (ix = 0; VEC_iterate (char_ptr, char_ptr_vec, ix, name); ++ix)
-    xfree (name);
-  VEC_free (char_ptr, char_ptr_vec);
-}
-
 /* Worker function to split character delimiter separated string of fields
    STR into a char pointer vector.  */
 
index 17ed06c253123d86320344a4f8a8af5cd359fdd2..29db27a8929180ca96a4afb0f9dca9ffdbb2e6c6 100644 (file)
@@ -29,8 +29,6 @@ DEF_VEC_P (char_ptr);
 
 DEF_VEC_P (const_char_ptr);
 
-extern void free_char_ptr_vec (VEC (char_ptr) *char_ptr_vec);
-
 /* Split STR, a list of DELIMITER-separated fields, into a char pointer vector.
 
    You may modify the returned strings.  */