From e2121f173e58a60776be657747d7558b07dce2fb Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Tue, 28 Jul 2009 17:40:24 -0400 Subject: tree.h (TREE_DEPRECATED): Document it is used for types too. 2009-07-28 Paolo Bonzini * tree.h (TREE_DEPRECATED): Document it is used for types too. (TYPE_VECTOR_OPAQUE): Use default_def_flag From-SVN: r150181 --- gcc/tree.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'gcc/tree.h') diff --git a/gcc/tree.h b/gcc/tree.h index fbae208..d972cfe 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -577,6 +577,7 @@ struct GTY(()) tree_common { TREE_DEPRECATED in all decls + all types IDENTIFIER_TRANSPARENT_ALIAS in IDENTIFIER_NODE @@ -584,9 +585,6 @@ struct GTY(()) tree_common { STMT_IN_SSA_EDGE_WORKLIST in all expressions (tree-ssa-propagate.c) - TYPE_VECTOR_OPAQUE in - VECTOR_TYPE - visited: TREE_VISITED in @@ -605,6 +603,9 @@ struct GTY(()) tree_common { default_def_flag: + TYPE_VECTOR_OPAQUE in + VECTOR_TYPE + SSA_NAME_IS_DEFAULT_DEF in SSA_NAME */ @@ -2187,7 +2188,7 @@ extern enum machine_mode vector_type_mode (const_tree); /* Nonzero in a VECTOR_TYPE if the frontends should not emit warnings about missing conversions to other vector types of the same size. */ #define TYPE_VECTOR_OPAQUE(NODE) \ - (VECTOR_TYPE_CHECK (NODE)->base.deprecated_flag) + (VECTOR_TYPE_CHECK (NODE)->base.default_def_flag) /* Indicates that objects of this type must be initialized by calling a function when they are created. */ -- cgit v1.1