* mi/mi-cmd-var.c (varobj_update_one): Print new
authorVladimir Prus <vladimir@codesourcery.com>
Sat, 19 Apr 2008 17:03:20 +0000 (17:03 +0000)
committerVladimir Prus <vladimir@codesourcery.com>
Sat, 19 Apr 2008 17:03:20 +0000 (17:03 +0000)
value for variable objects that changed type.

gdb/ChangeLog
gdb/mi/mi-cmd-var.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.mi/var-cmd.c

index 0f0db2d1c7a4369fab3e2687ee89f3ddf38d1153..7d08e32efea6e42130979a451699f45a05c98455 100644 (file)
@@ -1,3 +1,8 @@
+2008-04-19  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * mi/mi-cmd-var.c (varobj_update_one): Print new
+       value for variable objects that changed type.
+
 2008-04-19  Vladimir Prus  <vladimir@codesourcery.com>
 
        * varobj.c (varobj_invalidate): Don't touch floating
index 9c0df695598ed0bac18d8ac7fbd0b9aeb8a8e333..2f009fa0f5a954318bdfacaaad714bb3f62720e1 100644 (file)
@@ -687,6 +687,8 @@ varobj_update_one (struct varobj *var, enum print_values print_values,
           ui_out_field_string (uiout, "new_type", varobj_get_type(var));
           ui_out_field_int (uiout, "new_num_children", 
                            varobj_get_num_children(var));
+         if (mi_print_value_p (varobj_get_gdb_type (var), print_values))
+           ui_out_field_string (uiout, "value", varobj_get_value (var));
          break;
       }
       if (mi_version (uiout) > 1)
index ae8cfe6dda0fdf92143b961ecf7ef95f2575ba55..bcf86199139b7dcd3110ef72024a50e90b719788 100644 (file)
@@ -1,3 +1,9 @@
+2008-04-19  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * gdb.mi/var-cmd.c (do_at_tests): Verify that
+       '-var-update --all-values' reports new value even the type
+       of a variable object has changed.
+
 2008-04-18  Craig Silverstein  <csilvers@google.com>
 
        * gdb.dwarf2/dw2-compressed.S, gdb.dwarf2/dw2-compressed.exp: New
index ffc442f8edbbf2d97f596c29ae7b9da9b8fd71a9..99542cc61b20514e389a08f6986631773d67e452 100644 (file)
@@ -450,6 +450,13 @@ void do_at_tests ()
       :*/
     i += 2.0;
   }
+  {
+    float i = 19;
+    /*:
+      mi_gdb_test "-var-update --all-values F" {.*value="19".*} "update F (--all-values)"
+      :*/
+    i += 2.0;
+  }
   i++;
   /*:
     mi_varobj_update_with_type_change F "int" "0" "update F (3)"