Commit cb42deba by Andreas Schwab Committed by Andreas Schwab

ada-tree.h (TYPE_LEFT_JUSTIFIED_MODULAR_P): Use RECORD_OR_UNION_CHECK.

	* ada-tree.h (TYPE_LEFT_JUSTIFIED_MODULAR_P): Use
	RECORD_OR_UNION_CHECK.
	(TYPE_CONTAINS_TEMPLATE_P): Likewise.

From-SVN: r84127
parent c31b8e1b
2004-07-05 Andreas Schwab <schwab@suse.de>
* ada-tree.h (TYPE_LEFT_JUSTIFIED_MODULAR_P): Use
RECORD_OR_UNION_CHECK.
(TYPE_CONTAINS_TEMPLATE_P): Likewise.
2004-07-04 Kelley Cook <kcook@gcc.gnu.org> 2004-07-04 Kelley Cook <kcook@gcc.gnu.org>
* Make-lang.in (doc/gnat_ugn_unw.texi): Eliminate explicit * Make-lang.in (doc/gnat_ugn_unw.texi): Eliminate explicit
......
...@@ -71,7 +71,7 @@ struct lang_type GTY(()) {union lang_tree_node t; }; ...@@ -71,7 +71,7 @@ struct lang_type GTY(()) {union lang_tree_node t; };
/* For RECORD_TYPE, UNION_TYPE, and QUAL_UNION_TYPE, nonzero if this denotes /* For RECORD_TYPE, UNION_TYPE, and QUAL_UNION_TYPE, nonzero if this denotes
a left-justified modular type (will only be true for RECORD_TYPE). */ a left-justified modular type (will only be true for RECORD_TYPE). */
#define TYPE_LEFT_JUSTIFIED_MODULAR_P(NODE) \ #define TYPE_LEFT_JUSTIFIED_MODULAR_P(NODE) \
TYPE_LANG_FLAG_1 (REC_OR_UNION_CHECK (NODE)) TYPE_LANG_FLAG_1 (RECORD_OR_UNION_CHECK (NODE))
/* Nonzero in an arithmetic subtype if this is a subtype not known to the /* Nonzero in an arithmetic subtype if this is a subtype not known to the
front-end. */ front-end. */
...@@ -84,7 +84,7 @@ struct lang_type GTY(()) {union lang_tree_node t; }; ...@@ -84,7 +84,7 @@ struct lang_type GTY(()) {union lang_tree_node t; };
type for an object whose type includes its template in addition to type for an object whose type includes its template in addition to
its value (only true for RECORD_TYPE). */ its value (only true for RECORD_TYPE). */
#define TYPE_CONTAINS_TEMPLATE_P(NODE) \ #define TYPE_CONTAINS_TEMPLATE_P(NODE) \
TYPE_LANG_FLAG_3 (REC_OR_UNION_CHECK (NODE)) TYPE_LANG_FLAG_3 (RECORD_OR_UNION_CHECK (NODE))
/* For INTEGER_TYPE, nonzero if this really represents a VAX /* For INTEGER_TYPE, nonzero if this really represents a VAX
floating-point type. */ floating-point type. */
......
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