aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-11-04 08:22:18 +0000
committerRichard Stallman <rms@gnu.org>1993-11-04 08:22:18 +0000
commitb8af45d0710697313e2f52170b7381cdd3f35f00 (patch)
tree0c71bd9d17616d7280cdf519197d6174544e7dc0
parent2c7ec5118621906399571080b8210d26c590b215 (diff)
downloadgcc-b8af45d0710697313e2f52170b7381cdd3f35f00.zip
gcc-b8af45d0710697313e2f52170b7381cdd3f35f00.tar.gz
gcc-b8af45d0710697313e2f52170b7381cdd3f35f00.tar.bz2
(DECL_IN_TEXT_SECTION): New macro.
From-SVN: r5992
-rw-r--r--gcc/tree.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index 0597c6b..50b4d7e 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -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. */