Modified Files:
authorKung Hsu <kung@cygnus>
Tue, 9 Nov 1993 02:22:12 +0000 (02:22 +0000)
committerKung Hsu <kung@cygnus>
Tue, 9 Nov 1993 02:22:12 +0000 (02:22 +0000)
cp-valprint.c ChangeLog

        * cp-valprint.c (cp_print_value_fields): change output from <no
        value> to <optimized out or zero length>

gdb/ChangeLog
gdb/cp-valprint.c

index c8b47d4a4e405e8bae5a2891ee55f91fec2e4f7b..fe5a896be24ad81232d924ad423a39152a3d0b5b 100644 (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
index 806687ebd8b81d092cd98c546e15e82fd0c4abb8..1392dc7d566feaea47d71e2b4b00a55de860051e 100644 (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
                {
This page took 0.033351 seconds and 4 git commands to generate.