diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-24 18:14:00 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-24 18:14:00 -0500 |
commit | e8970a8c2fe4ad963bdc8c93cfc65eba539fad60 (patch) | |
tree | a360dbae4a67558dff0b354b8cd3020a08a9a878 /gcc/c-tree.h | |
parent | 3620d720144b4b63e775744eafb726a3a6607f1a (diff) | |
download | gcc-e8970a8c2fe4ad963bdc8c93cfc65eba539fad60.zip gcc-e8970a8c2fe4ad963bdc8c93cfc65eba539fad60.tar.gz gcc-e8970a8c2fe4ad963bdc8c93cfc65eba539fad60.tar.bz2 |
(DECL_C_BIT_FIELD): New macro.
From-SVN: r10856
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r-- | gcc/c-tree.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h index b904055..252fd30 100644 --- a/gcc/c-tree.h +++ b/gcc/c-tree.h @@ -124,6 +124,9 @@ struct lang_type without prototypes. */ #define TYPE_ACTUAL_ARG_TYPES(NODE) TYPE_NONCOPIED_PARTS (NODE) +/* In a FIELD_DECL, nonzero if the decl was originally a bitfield. */ +#define DECL_C_BIT_FIELD(NODE) DECL_LANG_FLAG_4 (NODE) + /* Nonzero if the type T promotes to itself. ANSI C states explicitly the list of types that promote; in particular, short promotes to int even if they have the same width. */ |