enum type_code
{
- TYPE_CODE_UNDEF = 0, /**< Not used; catches errors */
+ TYPE_CODE_UNDEF = 0, /* Not used; catches errors */
#define OP(X) X,
#include "type-codes.def"
enum field_loc_kind
{
- FIELD_LOC_KIND_BITPOS, /**< bitpos */
- FIELD_LOC_KIND_ENUMVAL, /**< enumval */
- FIELD_LOC_KIND_PHYSADDR, /**< physaddr */
- FIELD_LOC_KIND_PHYSNAME, /**< physname */
+ FIELD_LOC_KIND_BITPOS, /* bitpos */
+ FIELD_LOC_KIND_ENUMVAL, /* enumval */
+ FIELD_LOC_KIND_PHYSADDR, /* physaddr */
+ FIELD_LOC_KIND_PHYSNAME, /* physname */
/* A DWARF block that computes the address of the field. */
- FIELD_LOC_KIND_DWARF_BLOCK_ADDR, /**< dwarf_block */
+ FIELD_LOC_KIND_DWARF_BLOCK_ADDR, /* dwarf_block */
/* A DWARF block that computes the bit offset of the field. */
FIELD_LOC_KIND_DWARF_BLOCK_BITPOS,
};
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
-OP (TYPE_CODE_PTR) /**< Pointer type */
+OP (TYPE_CODE_PTR) /* Pointer type */
/* Array type with lower & upper bounds.
from right to left, not left to right. */
OP (TYPE_CODE_ARRAY)
-OP (TYPE_CODE_STRUCT) /**< C struct or Pascal record */
-OP (TYPE_CODE_UNION) /**< C union or Pascal variant part */
-OP (TYPE_CODE_ENUM) /**< Enumeration type */
-OP (TYPE_CODE_FLAGS) /**< Bit flags type */
-OP (TYPE_CODE_FUNC) /**< Function type */
-OP (TYPE_CODE_INT) /**< Integer type */
+OP (TYPE_CODE_STRUCT) /* C struct or Pascal record */
+OP (TYPE_CODE_UNION) /* C union or Pascal variant part */
+OP (TYPE_CODE_ENUM) /* Enumeration type */
+OP (TYPE_CODE_FLAGS) /* Bit flags type */
+OP (TYPE_CODE_FUNC) /* Function type */
+OP (TYPE_CODE_INT) /* Integer type */
/* Floating type. This is *NOT* a complex type. */
OP (TYPE_CODE_FLT)
type is a generic pointer. */
OP (TYPE_CODE_VOID)
-OP (TYPE_CODE_SET) /**< Pascal sets */
-OP (TYPE_CODE_RANGE) /**< Range (integers within spec'd bounds). */
+OP (TYPE_CODE_SET) /* Pascal sets */
+OP (TYPE_CODE_RANGE) /* Range (integers within spec'd bounds). */
/* A string type which is like an array of character but prints
differently. It does not contain a length field as Pascal
OP (TYPE_CODE_ERROR)
/* C++ */
-OP (TYPE_CODE_METHOD) /**< Method type */
+OP (TYPE_CODE_METHOD) /* Method type */
/* Pointer-to-member-function type. This describes how to access a
particular member function of a class (possibly a virtual
platforms). */
OP (TYPE_CODE_MEMBERPTR)
-OP (TYPE_CODE_REF) /**< C++ Reference types */
+OP (TYPE_CODE_REF) /* C++ Reference types */
-OP (TYPE_CODE_RVALUE_REF) /**< C++ rvalue reference types */
+OP (TYPE_CODE_RVALUE_REF) /* C++ rvalue reference types */
-OP (TYPE_CODE_CHAR) /**< *real* character type */
+OP (TYPE_CODE_CHAR) /* *real* character type */
/* Boolean type. 0 is false, 1 is true, and other values are
non-boolean (e.g. FORTRAN "logical" used as unsigned int). */
OP (TYPE_CODE_BOOL)
/* Fortran */
-OP (TYPE_CODE_COMPLEX) /**< Complex float */
+OP (TYPE_CODE_COMPLEX) /* Complex float */
OP (TYPE_CODE_TYPEDEF)
-OP (TYPE_CODE_NAMESPACE) /**< C++ namespace. */
+OP (TYPE_CODE_NAMESPACE) /* C++ namespace. */
-OP (TYPE_CODE_DECFLOAT) /**< Decimal floating point. */
+OP (TYPE_CODE_DECFLOAT) /* Decimal floating point. */
-OP (TYPE_CODE_MODULE) /**< Fortran module. */
+OP (TYPE_CODE_MODULE) /* Fortran module. */
/* Internal function type. */
OP (TYPE_CODE_INTERNAL_FUNCTION)