Commit d3907cc3 by Steven Bosscher Committed by Steven Bosscher

lex.c (cxx_init): Don't set the ridpointer for RID_NULL to null_node.

	* lex.c (cxx_init): Don't set the ridpointer for RID_NULL
	to null_node.

From-SVN: r87774
parent 4c9d8750
2004-09-20 Steven Bosscher <stevenb@suse.de>
* lex.c (cxx_init): Don't set the ridpointer for RID_NULL
to null_node.
2004-09-19 Mark Mitchell <mark@codesourcery.com> 2004-09-19 Mark Mitchell <mark@codesourcery.com>
* decl2.c (determine_visibility): Allow class visibility * decl2.c (determine_visibility): Allow class visibility
......
...@@ -352,7 +352,6 @@ cxx_init (void) ...@@ -352,7 +352,6 @@ cxx_init (void)
not shared. */ not shared. */
null_node = make_node (INTEGER_CST); null_node = make_node (INTEGER_CST);
TREE_TYPE (null_node) = c_common_type_for_size (POINTER_SIZE, 0); TREE_TYPE (null_node) = c_common_type_for_size (POINTER_SIZE, 0);
ridpointers[RID_NULL] = null_node;
/* The fact that G++ uses COMDAT for many entities (inline /* The fact that G++ uses COMDAT for many entities (inline
functions, template instantiations, virtual tables, etc.) mean functions, template instantiations, virtual tables, etc.) mean
......
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