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
This commit is contained in:
Mark Mitchell 2000-03-22 23:55:31 +00:00 committed by Mark Mitchell
parent fae8209ac4
commit dc397323c6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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)