Commit a2fc3e63 by Nathan Froyd Committed by Nathan Froyd

make TS_IDENTIFIER be a substructure of TS_TYPED

make TS_IDENTIFIER be a substructure of TS_TYPED
gcc/
	* tree.h (struct tree_identifier): Inherit from tree_typed, not
	tree_common.
	(HT_IDENT_TO_GCC_IDENT): Adjust for said change.
	* tree.c (initialize_tree_contains_struct): Mark TS_IDENTIFIER as
	TS_BASE instead of TS_COMMON.
	* varasm.c (assemble_name): Remove assert.

gcc/c-family/
	* c-common.h (struct c_common_identifier): Inherit from tree_typed,
	not tree_common.

From-SVN: r174286
parent b6139926
2011-05-26 Nathan Froyd <froydnj@codesourcery.com>
* tree.h (struct tree_identifier): Inherit from tree_typed, not
tree_common.
(HT_IDENT_TO_GCC_IDENT): Adjust for said change.
* tree.c (initialize_tree_contains_struct): Mark TS_IDENTIFIER as
TS_BASE instead of TS_COMMON.
* varasm.c (assemble_name): Remove assert.
2011-05-26 Bernd Schmidt <bernds@codesourcery.com> 2011-05-26 Bernd Schmidt <bernds@codesourcery.com>
* Makefile.in (srcdirify): Change order so that libgcc_objdir is * Makefile.in (srcdirify): Change order so that libgcc_objdir is
......
2011-05-26 Nathan Froyd <froydnj@codesourcery.com>
* c-common.h (struct c_common_identifier): Inherit from tree_typed,
not tree_common.
2011-05-25 Jakub Jelinek <jakub@redhat.com> 2011-05-25 Jakub Jelinek <jakub@redhat.com>
* c-common.c (def_fn_type): Remove extra va_end. * c-common.c (def_fn_type): Remove extra va_end.
......
...@@ -307,7 +307,7 @@ enum c_tree_index ...@@ -307,7 +307,7 @@ enum c_tree_index
/* Identifier part common to the C front ends. Inherits from /* Identifier part common to the C front ends. Inherits from
tree_identifier, despite appearances. */ tree_identifier, despite appearances. */
struct GTY(()) c_common_identifier { struct GTY(()) c_common_identifier {
struct tree_common common; struct tree_typed common;
struct cpp_hashnode node; struct cpp_hashnode node;
}; };
......
...@@ -381,10 +381,10 @@ initialize_tree_contains_struct (void) ...@@ -381,10 +381,10 @@ initialize_tree_contains_struct (void)
case TS_SSA_NAME: case TS_SSA_NAME:
case TS_CONSTRUCTOR: case TS_CONSTRUCTOR:
case TS_EXP: case TS_EXP:
case TS_IDENTIFIER:
MARK_TS_TYPED (code); MARK_TS_TYPED (code);
break; break;
case TS_IDENTIFIER:
case TS_DECL_MINIMAL: case TS_DECL_MINIMAL:
case TS_TYPE_COMMON: case TS_TYPE_COMMON:
case TS_LIST: case TS_LIST:
......
...@@ -1541,11 +1541,11 @@ struct GTY(()) tree_vector { ...@@ -1541,11 +1541,11 @@ struct GTY(()) tree_vector {
pointer, and vice versa. */ pointer, and vice versa. */
#define HT_IDENT_TO_GCC_IDENT(NODE) \ #define HT_IDENT_TO_GCC_IDENT(NODE) \
((tree) ((char *) (NODE) - sizeof (struct tree_common))) ((tree) ((char *) (NODE) - sizeof (struct tree_typed)))
#define GCC_IDENT_TO_HT_IDENT(NODE) (&((struct tree_identifier *) (NODE))->id) #define GCC_IDENT_TO_HT_IDENT(NODE) (&((struct tree_identifier *) (NODE))->id)
struct GTY(()) tree_identifier { struct GTY(()) tree_identifier {
struct tree_common common; struct tree_typed typed;
struct ht_identifier id; struct ht_identifier id;
}; };
......
...@@ -2296,7 +2296,6 @@ assemble_name (FILE *file, const char *name) ...@@ -2296,7 +2296,6 @@ assemble_name (FILE *file, const char *name)
ultimate_transparent_alias_target (&id); ultimate_transparent_alias_target (&id);
if (id != id_orig) if (id != id_orig)
name = IDENTIFIER_POINTER (id); name = IDENTIFIER_POINTER (id);
gcc_assert (! TREE_CHAIN (id));
} }
assemble_name_raw (file, name); assemble_name_raw (file, name);
......
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