Move allocate_stub_method to stabsread.c
authorTom Tromey <tromey@adacore.com>
Fri, 24 Feb 2023 20:55:29 +0000 (13:55 -0700)
committerTom Tromey <tromey@adacore.com>
Fri, 10 Mar 2023 14:57:45 +0000 (07:57 -0700)
allocate_stub_method is only called from stabsread.c, and I don't
think it will be needed anywhere else.  So, move it and make it
static.  Tested by rebuilding.

gdb/gdbtypes.c
gdb/gdbtypes.h
gdb/stabsread.c

index 3cdde29c9beb566e7cb7e14ce9f2360aa0526770..cfd0a1b62c7a090eae869bf5f135a75c926d98d6 100644 (file)
@@ -861,26 +861,6 @@ lookup_methodptr_type (struct type *to_type)
   return mtype;
 }
 
-/* Allocate a stub method whose return type is TYPE.  This apparently
-   happens for speed of symbol reading, since parsing out the
-   arguments to the method is cpu-intensive, the way we are doing it.
-   So, we will fill in arguments later.  This always returns a fresh
-   type.  */
-
-struct type *
-allocate_stub_method (struct type *type)
-{
-  struct type *mtype;
-
-  mtype = alloc_type_copy (type);
-  mtype->set_code (TYPE_CODE_METHOD);
-  mtype->set_length (1);
-  mtype->set_is_stub (true);
-  mtype->set_target_type (type);
-  /* TYPE_SELF_TYPE (mtype) = unknown yet */
-  return mtype;
-}
-
 /* See gdbtypes.h.  */
 
 bool
index c4889a4a05bcd2a9a794b9aeb2cca9332d5c95d0..52475d5afb40c488d2ecda74b7b89e58961622a4 100644 (file)
@@ -2312,8 +2312,6 @@ extern void smash_to_memberptr_type (struct type *, struct type *,
 
 extern void smash_to_methodptr_type (struct type *, struct type *);
 
-extern struct type *allocate_stub_method (struct type *);
-
 extern const char *type_name_or_error (struct type *type);
 
 struct struct_elt
index e1597907778ee7cda71933fe9f7058f52fd363d2..73f05c44b239a7437c1f5eb5587068ce1bd1c4ba 100644 (file)
@@ -1464,6 +1464,26 @@ error_type (const char **pp, struct objfile *objfile)
 }
 \f
 
+/* Allocate a stub method whose return type is TYPE.  This apparently
+   happens for speed of symbol reading, since parsing out the
+   arguments to the method is cpu-intensive, the way we are doing it.
+   So, we will fill in arguments later.  This always returns a fresh
+   type.  */
+
+static struct type *
+allocate_stub_method (struct type *type)
+{
+  struct type *mtype;
+
+  mtype = alloc_type_copy (type);
+  mtype->set_code (TYPE_CODE_METHOD);
+  mtype->set_length (1);
+  mtype->set_is_stub (true);
+  mtype->set_target_type (type);
+  /* TYPE_SELF_TYPE (mtype) = unknown yet */
+  return mtype;
+}
+
 /* Read type information or a type definition; return the type.  Even
    though this routine accepts either type information or a type
    definition, the distinction is relevant--some parts of stabsread.c