diff options
author | Jason Merrill <merrill@gnu.org> | 1994-06-16 23:37:43 +0000 |
---|---|---|
committer | Jason Merrill <merrill@gnu.org> | 1994-06-16 23:37:43 +0000 |
commit | 308018308fd5d06da46e18ffddc7565e785b576b (patch) | |
tree | 38834f72d54706e3a983b8bd798de62d77929768 /gcc/tree.h | |
parent | 224f1d7123164a8c7ed9f313320b464c468b8b18 (diff) | |
download | gcc-308018308fd5d06da46e18ffddc7565e785b576b.zip gcc-308018308fd5d06da46e18ffddc7565e785b576b.tar.gz gcc-308018308fd5d06da46e18ffddc7565e785b576b.tar.bz2 |
(DECL_DEFER_OUTPUT): New macro.
From-SVN: r7506
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -915,6 +915,10 @@ struct tree_type It is also used in FIELD_DECLs for vtable pointers. */ #define DECL_VIRTUAL_P(NODE) ((NODE)->decl.virtual_flag) +/* Used to indicate that the linkage status of this DECL is not yet known, + so it should not be output now. */ +#define DECL_DEFER_OUTPUT(NODE) ((NODE)->decl.defer_output) + /* Additional flags for language-specific uses. */ #define DECL_LANG_FLAG_0(NODE) ((NODE)->decl.lang_flag_0) #define DECL_LANG_FLAG_1(NODE) ((NODE)->decl.lang_flag_1) @@ -949,7 +953,8 @@ struct tree_decl unsigned in_system_header_flag : 1; unsigned common_flag : 1; - /* room for six more */ + unsigned defer_output : 1; + /* room for five more */ unsigned lang_flag_0 : 1; unsigned lang_flag_1 : 1; |