Modified Files:

cp-valprint.c ChangeLog

        * cp-valprint.c (cp_print_value_fields): change output from <no
        value> to <optimized out or zero length>
This commit is contained in:
Kung Hsu
1993-11-09 02:22:12 +00:00
parent 99c411063e
commit aa074e84be
2 changed files with 7 additions and 2 deletions

View File

@@ -298,7 +298,7 @@ cp_print_value_fields (type, valaddr, stream, format, recurse, pretty,
order problems. */
if (TYPE_FIELD_IGNORE (type, i))
{
fputs_filtered ("<no value>", stream);
fputs_filtered ("<optimized out or zero length>", stream);
}
else
{
@@ -313,7 +313,7 @@ cp_print_value_fields (type, valaddr, stream, format, recurse, pretty,
{
if (TYPE_FIELD_IGNORE (type, i))
{
fputs_filtered ("<no value>", stream);
fputs_filtered ("<optimized out or zero length>", stream);
}
else
{