WIP MachO binutils port assisted by AI I may consider upstreaming this in the future.
0

Configure Feed

Select the types of activity you want to include in your feed.

[gdb] Remove '/**<' comment marker

Another comment marker doxygen supports is "/**<". Replace it with "/*".

Suggested-By: Kevin Buettner <kevinb@redhat.com>
Approved-By: Tom Tromey <tom@tromey.com>

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=34186

Tom de Vries (Jun 1, 2026, 8:14 PM +0200) 56d1cb79 022e48d5

+23 -23
+6 -6
gdb/gdbtypes.h
··· 63 63 64 64 enum type_code 65 65 { 66 - TYPE_CODE_UNDEF = 0, /**< Not used; catches errors */ 66 + TYPE_CODE_UNDEF = 0, /* Not used; catches errors */ 67 67 68 68 #define OP(X) X, 69 69 #include "type-codes.def" ··· 483 483 484 484 enum field_loc_kind 485 485 { 486 - FIELD_LOC_KIND_BITPOS, /**< bitpos */ 487 - FIELD_LOC_KIND_ENUMVAL, /**< enumval */ 488 - FIELD_LOC_KIND_PHYSADDR, /**< physaddr */ 489 - FIELD_LOC_KIND_PHYSNAME, /**< physname */ 486 + FIELD_LOC_KIND_BITPOS, /* bitpos */ 487 + FIELD_LOC_KIND_ENUMVAL, /* enumval */ 488 + FIELD_LOC_KIND_PHYSADDR, /* physaddr */ 489 + FIELD_LOC_KIND_PHYSNAME, /* physname */ 490 490 /* A DWARF block that computes the address of the field. */ 491 - FIELD_LOC_KIND_DWARF_BLOCK_ADDR, /**< dwarf_block */ 491 + FIELD_LOC_KIND_DWARF_BLOCK_ADDR, /* dwarf_block */ 492 492 /* A DWARF block that computes the bit offset of the field. */ 493 493 FIELD_LOC_KIND_DWARF_BLOCK_BITPOS, 494 494 };
+17 -17
gdb/type-codes.def
··· 17 17 You should have received a copy of the GNU General Public License 18 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 19 19 20 - OP (TYPE_CODE_PTR) /**< Pointer type */ 20 + OP (TYPE_CODE_PTR) /* Pointer type */ 21 21 22 22 /* Array type with lower & upper bounds. 23 23 ··· 39 39 from right to left, not left to right. */ 40 40 OP (TYPE_CODE_ARRAY) 41 41 42 - OP (TYPE_CODE_STRUCT) /**< C struct or Pascal record */ 43 - OP (TYPE_CODE_UNION) /**< C union or Pascal variant part */ 44 - OP (TYPE_CODE_ENUM) /**< Enumeration type */ 45 - OP (TYPE_CODE_FLAGS) /**< Bit flags type */ 46 - OP (TYPE_CODE_FUNC) /**< Function type */ 47 - OP (TYPE_CODE_INT) /**< Integer type */ 42 + OP (TYPE_CODE_STRUCT) /* C struct or Pascal record */ 43 + OP (TYPE_CODE_UNION) /* C union or Pascal variant part */ 44 + OP (TYPE_CODE_ENUM) /* Enumeration type */ 45 + OP (TYPE_CODE_FLAGS) /* Bit flags type */ 46 + OP (TYPE_CODE_FUNC) /* Function type */ 47 + OP (TYPE_CODE_INT) /* Integer type */ 48 48 49 49 /* Floating type. This is *NOT* a complex type. */ 50 50 OP (TYPE_CODE_FLT) ··· 57 57 type is a generic pointer. */ 58 58 OP (TYPE_CODE_VOID) 59 59 60 - OP (TYPE_CODE_SET) /**< Pascal sets */ 61 - OP (TYPE_CODE_RANGE) /**< Range (integers within spec'd bounds). */ 60 + OP (TYPE_CODE_SET) /* Pascal sets */ 61 + OP (TYPE_CODE_RANGE) /* Range (integers within spec'd bounds). */ 62 62 63 63 /* A string type which is like an array of character but prints 64 64 differently. It does not contain a length field as Pascal ··· 72 72 OP (TYPE_CODE_ERROR) 73 73 74 74 /* C++ */ 75 - OP (TYPE_CODE_METHOD) /**< Method type */ 75 + OP (TYPE_CODE_METHOD) /* Method type */ 76 76 77 77 /* Pointer-to-member-function type. This describes how to access a 78 78 particular member function of a class (possibly a virtual ··· 87 87 platforms). */ 88 88 OP (TYPE_CODE_MEMBERPTR) 89 89 90 - OP (TYPE_CODE_REF) /**< C++ Reference types */ 90 + OP (TYPE_CODE_REF) /* C++ Reference types */ 91 91 92 - OP (TYPE_CODE_RVALUE_REF) /**< C++ rvalue reference types */ 92 + OP (TYPE_CODE_RVALUE_REF) /* C++ rvalue reference types */ 93 93 94 - OP (TYPE_CODE_CHAR) /**< *real* character type */ 94 + OP (TYPE_CODE_CHAR) /* *real* character type */ 95 95 96 96 /* Boolean type. 0 is false, 1 is true, and other values are 97 97 non-boolean (e.g. FORTRAN "logical" used as unsigned int). */ 98 98 OP (TYPE_CODE_BOOL) 99 99 100 100 /* Fortran */ 101 - OP (TYPE_CODE_COMPLEX) /**< Complex float */ 101 + OP (TYPE_CODE_COMPLEX) /* Complex float */ 102 102 103 103 OP (TYPE_CODE_TYPEDEF) 104 104 105 - OP (TYPE_CODE_NAMESPACE) /**< C++ namespace. */ 105 + OP (TYPE_CODE_NAMESPACE) /* C++ namespace. */ 106 106 107 - OP (TYPE_CODE_DECFLOAT) /**< Decimal floating point. */ 107 + OP (TYPE_CODE_DECFLOAT) /* Decimal floating point. */ 108 108 109 - OP (TYPE_CODE_MODULE) /**< Fortran module. */ 109 + OP (TYPE_CODE_MODULE) /* Fortran module. */ 110 110 111 111 /* Internal function type. */ 112 112 OP (TYPE_CODE_INTERNAL_FUNCTION)