Make c_type_print_varspec_suffix static
authorTom Tromey <tom@tromey.com>
Tue, 17 Apr 2018 19:51:22 +0000 (13:51 -0600)
committerTom Tromey <tom@tromey.com>
Fri, 1 Jun 2018 16:19:55 +0000 (10:19 -0600)
I noticed that c_type_print_varspec_suffix is only called from
c-typeprint.c, so this patch makes it "static".

gdb/ChangeLog
2018-06-01  Tom Tromey  <tom@tromey.com>

* typeprint.h (c_type_print_varspec_suffix): Don't declare.
* c-typeprint.c (c_type_print_varspec_suffix): Now static.

gdb/ChangeLog
gdb/c-typeprint.c
gdb/typeprint.h

index 37656ad..1eae1ae 100644 (file)
@@ -1,3 +1,8 @@
+2018-06-01  Tom Tromey  <tom@tromey.com>
+
+       * typeprint.h (c_type_print_varspec_suffix): Don't declare.
+       * c-typeprint.c (c_type_print_varspec_suffix): Now static.
+
 2018-06-01  Alan Hayward  <alan.hayward@arm.com>
 
        * aarch64-tdep.c (aarch64_sve_register_names): New const
index cb793f0..31ff170 100644 (file)
@@ -50,6 +50,10 @@ enum access_specifier
   s_protected
 };
 
+static void c_type_print_varspec_suffix (struct type *, struct ui_file *, int,
+                                        int, int,
+                                        const struct type_print_options *);
+
 static void c_type_print_varspec_prefix (struct type *,
                                         struct ui_file *,
                                         int, int, int,
@@ -716,7 +720,7 @@ remove_qualifiers (char *qid)
    needed after the variable name (to describe its type).
    Args work like c_type_print_varspec_prefix.  */
 
-void
+static void
 c_type_print_varspec_suffix (struct type *type,
                             struct ui_file *stream,
                             int show, int passed_a_ptr,
index 895eebd..74006b3 100644 (file)
@@ -120,9 +120,6 @@ private:
 
 void print_type_scalar (struct type * type, LONGEST, struct ui_file *);
 
-void c_type_print_varspec_suffix (struct type *, struct ui_file *, int,
-                                 int, int, const struct type_print_options *);
-
 void c_type_print_args (struct type *, struct ui_file *, int, enum language,
                        const struct type_print_options *);