Implement the GCC insani^Wextension __builtin_classify_type.
[cparser] / type_t.h
index efc97b6..67a23b9 100644 (file)
--- a/type_t.h
+++ b/type_t.h
@@ -27,8 +27,10 @@ typedef enum {
        TYPE_TYPEOF
 } type_type_t;
 
+/* note that the constant values represent the rank of the types as defined
+ * in ยง 6.3.1 */
 typedef enum {
-       ATOMIC_TYPE_INVALID,
+       ATOMIC_TYPE_INVALID = 0,
        ATOMIC_TYPE_VOID,
        ATOMIC_TYPE_CHAR,
        ATOMIC_TYPE_SCHAR,
@@ -58,10 +60,10 @@ typedef enum {
 } atomic_type_type_t;
 
 typedef enum {
+       TYPE_QUALIFIER_NONE     = 0,
        TYPE_QUALIFIER_CONST    = 1 << 0,
        TYPE_QUALIFIER_RESTRICT = 1 << 1,
        TYPE_QUALIFIER_VOLATILE = 1 << 2,
-       TYPE_QUALIFIER_INLINE   = 1 << 3,
 } type_qualifier_t;
 
 struct type_t {
@@ -101,16 +103,16 @@ struct function_parameter_t {
 };
 
 struct function_type_t {
-       type_t               type;
-       type_t              *result_type;
+       type_t                type;
+       type_t               *result_type;
        function_parameter_t *parameters;
-       bool                 variadic;
-       bool                 unspecified_parameters;
+       bool                  variadic;
+       bool                  unspecified_parameters;
 };
 
 struct compound_type_t {
        type_t         type;
-       /** the declaration of the compound type, it's context field
+       /** the declaration of the compound type, its context field
         * contains the compound entries. */
        declaration_t *declaration;
 };