diff options
author | Richard Stallman <rms@gnu.org> | 1993-11-04 08:22:18 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-11-04 08:22:18 +0000 |
commit | b8af45d0710697313e2f52170b7381cdd3f35f00 (patch) | |
tree | 0c71bd9d17616d7280cdf519197d6174544e7dc0 | |
parent | 2c7ec5118621906399571080b8210d26c590b215 (diff) | |
download | gcc-b8af45d0710697313e2f52170b7381cdd3f35f00.zip gcc-b8af45d0710697313e2f52170b7381cdd3f35f00.tar.gz gcc-b8af45d0710697313e2f52170b7381cdd3f35f00.tar.bz2 |
(DECL_IN_TEXT_SECTION): New macro.
From-SVN: r5992
-rw-r--r-- | gcc/tree.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -873,6 +873,9 @@ struct tree_type #define DECL_TOO_LATE(NODE) ((NODE)->decl.bit_field_flag) /* In a FUNCTION_DECL, nonzero means a built in function. */ #define DECL_BUILT_IN(NODE) ((NODE)->decl.bit_field_flag) +/* In a VAR_DECL that's static, + nonzero if the space is in the text section. */ +#define DECL_IN_TEXT_SECTION(NODE) ((NODE)->decl.bit_field_flag) /* Used in VAR_DECLs to indicate that the variable is a vtable. It is also used in FIELD_DECLs for vtable pointers. */ |