diff options
Diffstat (limited to 'gcc/c/c-tree.h')
-rw-r--r-- | gcc/c/c-tree.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/c/c-tree.h b/gcc/c/c-tree.h index 46be53e..5a8ab6d 100644 --- a/gcc/c/c-tree.h +++ b/gcc/c/c-tree.h @@ -230,6 +230,7 @@ enum c_typespec_keyword { cts_dfloat32, cts_dfloat64, cts_dfloat128, + cts_floatn_nx, cts_fract, cts_accum, cts_auto_type @@ -295,6 +296,9 @@ struct c_declspecs { int align_log; /* For the __intN declspec, this stores the index into the int_n_* arrays. */ int int_n_idx; + /* For the _FloatN and _FloatNx declspec, this stores the index into + the floatn_nx_types array. */ + int floatn_nx_idx; /* The storage class specifier, or csc_none if none. */ enum c_storage_class storage_class; /* Any type specifier keyword used such as "int", not reflecting |