diff options
Diffstat (limited to 'gcc/c/c-tree.h')
-rw-r--r-- | gcc/c/c-tree.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/c/c-tree.h b/gcc/c/c-tree.h index e8060f8..a8cf353 100644 --- a/gcc/c/c-tree.h +++ b/gcc/c/c-tree.h @@ -267,6 +267,7 @@ enum c_declspec_word { cdw_saturating, cdw_alignas, cdw_address_space, + cdw_gimple, cdw_number_of_elements /* This one must always be the last enumerator. */ }; @@ -290,6 +291,8 @@ struct c_declspecs { NULL; attributes (possibly from multiple lists) will be passed separately. */ tree attrs; + /* The pass to start compiling a __GIMPLE function with. */ + char *gimple_pass; /* The base-2 log of the greatest alignment required by an _Alignas specifier, in bytes, or -1 if no such specifiers with nonzero alignment. */ @@ -362,6 +365,8 @@ struct c_declspecs { /* Whether any alignment specifier (even with zero alignment) was specified. */ BOOL_BITFIELD alignas_p : 1; + /* Whether any __GIMPLE specifier was specified. */ + BOOL_BITFIELD gimple_p : 1; /* The address space that the declaration belongs to. */ addr_space_t address_space; }; |