From: Richard Kenner Date: Sun, 24 Dec 1995 23:14:00 +0000 (-0500) Subject: (DECL_C_BIT_FIELD): New macro. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e8970a8c2fe4ad963bdc8c93cfc65eba539fad60;p=gcc.git (DECL_C_BIT_FIELD): New macro. From-SVN: r10856 --- diff --git a/gcc/c-tree.h b/gcc/c-tree.h index b9040550fed..252fd30c6c2 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. */