gdb: remove TYPE_INCOMPLETE
authorSimon Marchi <simon.marchi@efficios.com>
Tue, 5 May 2020 02:39:38 +0000 (22:39 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Tue, 5 May 2020 02:39:39 +0000 (22:39 -0400)
The "HP platforms" comment prompted me to check if this was still used
somewhere.  Apparently it's not, so remove it.

gdb/ChangeLog:

* gdbtypes.h (TYPE_INCOMPLETE): Remove.
* gdbtypes.c (recursive_dump_type): Remove use of
TYPE_INCOMPLETE.

gdb/ChangeLog
gdb/gdbtypes.c
gdb/gdbtypes.h

index 9a611ae939d93cf2dc7eb6edb2eaf0d751c4e5f5..ff528ba9ebef02da83c103f2b93c44d8a13b1f53 100644 (file)
@@ -1,3 +1,9 @@
+2020-05-04  Simon Marchi  <simon.marchi@efficios.com>
+
+       * gdbtypes.h (TYPE_INCOMPLETE): Remove.
+       * gdbtypes.c (recursive_dump_type): Remove use of
+       TYPE_INCOMPLETE.
+
 2020-05-03  Tom Tromey  <tom@tromey.com>
 
        * breakpoint.c (catch_command, tcatch_command): Remove.
index 93ef8774a915469a01c06a8ac6fe8243981f0e25..9a6a6dd74b103cdc4686691435fcbd1d5b14f735 100644 (file)
@@ -5080,10 +5080,6 @@ recursive_dump_type (struct type *type, int spaces)
     {
       puts_filtered (" TYPE_PROTOTYPED");
     }
-  if (TYPE_INCOMPLETE (type))
-    {
-      puts_filtered (" TYPE_INCOMPLETE");
-    }
   if (TYPE_VARARGS (type))
     {
       puts_filtered (" TYPE_VARARGS");
index 8899fb151191d02e30efa3a919b6c4692ca1c922..e231f495ab7a97c2132ec0b2720fd9c12437d26d 100644 (file)
@@ -246,16 +246,6 @@ DEF_ENUM_FLAGS_TYPE (enum type_instance_flag_value, type_instance_flags);
 
 #define TYPE_PROTOTYPED(t)     (TYPE_MAIN_TYPE (t)->flag_prototyped)
 
-/* * This flag is used to indicate that processing for this type
-   is incomplete.
-
-   (Mostly intended for HP platforms, where class methods, for
-   instance, can be encountered before their classes in the debug
-   info; the incomplete type has to be marked so that the class and
-   the method can be assigned correct types.)  */
-
-#define TYPE_INCOMPLETE(t)     (TYPE_MAIN_TYPE (t)->flag_incomplete)
-
 /* * FIXME drow/2002-06-03:  Only used for methods, but applies as well
    to functions.  */