Commit dc397323 by Mark Mitchell Committed by Mark Mitchell

tree.c (size_in_bytes): Return size_zero_node, not integer_zero_node.

	* tree.c (size_in_bytes): Return size_zero_node, not
	integer_zero_node.

From-SVN: r32694
parent fae8209a
2000-03-22 Mark Mitchell <mark@codesourcery.com>
* tree.c (size_in_bytes): Return size_zero_node, not
integer_zero_node.
2000-03-22 Geoff Keating <geoffk@cygnus.com>
* config/fp-bit.c (pack_d): Correct the case when a denormal
......
......@@ -2283,7 +2283,7 @@ size_in_bytes (type)
if (t == 0)
{
incomplete_type_error (NULL_TREE, type);
return integer_zero_node;
return size_zero_node;
}
if (TREE_CODE (t) == INTEGER_CST)
......
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