Commit 412e0b3c by Mark Mitchell Committed by Mark Mitchell

cp-tree.h (lang_decl_flags): Remove comdat.

	* cp-tree.h (lang_decl_flags): Remove comdat.  Updated dummy.
	(DECL_COMDAT): Remove definition.

From-SVN: r26734
parent 59182242
1999-05-02 Mark Mitchell <mark@codesourcery.com>
* cp-tree.h (lang_decl_flags): Remove comdat. Updated dummy.
(DECL_COMDAT): Remove definition.
1999-05-01 Mark Mitchell <mark@codesourcery.com> 1999-05-01 Mark Mitchell <mark@codesourcery.com>
* decl.c (wrapup_globals_for_namespace): Fix thinko in previous * decl.c (wrapup_globals_for_namespace): Fix thinko in previous
......
...@@ -1173,11 +1173,10 @@ struct lang_decl_flags ...@@ -1173,11 +1173,10 @@ struct lang_decl_flags
unsigned nonconverting : 1; unsigned nonconverting : 1;
unsigned declared_inline : 1; unsigned declared_inline : 1;
unsigned not_really_extern : 1; unsigned not_really_extern : 1;
unsigned comdat : 1;
unsigned needs_final_overrider : 1; unsigned needs_final_overrider : 1;
unsigned bitfield : 1; unsigned bitfield : 1;
unsigned defined_in_class : 1; unsigned defined_in_class : 1;
unsigned dummy : 3; unsigned dummy : 4;
tree access; tree access;
tree context; tree context;
...@@ -2019,10 +2018,6 @@ extern int flag_new_for_scope; ...@@ -2019,10 +2018,6 @@ extern int flag_new_for_scope;
#define DECL_REALLY_EXTERN(NODE) \ #define DECL_REALLY_EXTERN(NODE) \
(DECL_EXTERNAL (NODE) && ! DECL_NOT_REALLY_EXTERN (NODE)) (DECL_EXTERNAL (NODE) && ! DECL_NOT_REALLY_EXTERN (NODE))
/* Used to tell cp_finish_decl that it should approximate comdat linkage
as best it can for this decl. */
#define DECL_COMDAT(NODE) (DECL_LANG_SPECIFIC (NODE)->decl_flags.comdat)
#define THUNK_DELTA(DECL) ((DECL)->decl.frame_size.i) #define THUNK_DELTA(DECL) ((DECL)->decl.frame_size.i)
/* ...and for unexpanded-parameterized-type nodes. */ /* ...and for unexpanded-parameterized-type nodes. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment