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

@ -1,3 +1,8 @@
Mon Nov 8 18:17:11 1993 Kung Hsu (kung@cirdan.cygnus.com)
* cp-valprint.c (cp_print_value_fields): change output from <no
value> to <optimized out or zero length>
Mon Nov 08 17:05:30 1993 Jeffrey Wheat (cassidy@cygnus.com)
* Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS

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
{