From b8af45d0710697313e2f52170b7381cdd3f35f00 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Thu, 4 Nov 1993 08:22:18 +0000 Subject: [PATCH] (DECL_IN_TEXT_SECTION): New macro. From-SVN: r5992 --- gcc/tree.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gcc/tree.h b/gcc/tree.h index 0597c6b29ab..50b4d7ea57c 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. */ -- 2.30.2