Remove variable_default_display
authorTom Tromey <tromey@adacore.com>
Thu, 31 Aug 2023 18:12:12 +0000 (12:12 -0600)
committerTom Tromey <tromey@adacore.com>
Thu, 7 Sep 2023 20:04:53 +0000 (14:04 -0600)
variable_default_display has a single caller now, so remove it.

Reviewed-by: Keith Seitz <keiths@redhat.com>
gdb/varobj.c

index 760809c6f5150387e7f8499a35ca63b4a8c9ae7c..3ae8d728e82c856badda7abcc42e3c8cff74364b 100644 (file)
@@ -164,8 +164,6 @@ create_child_with_value (struct varobj *parent, int index,
 
 /* Utility routines */
 
-static enum varobj_display_formats variable_default_display (struct varobj *);
-
 static bool update_type_if_necessary (struct varobj *var,
                                      struct value *new_value);
 
@@ -336,7 +334,7 @@ varobj_create (const char *objname,
          return NULL;
        }
 
-      var->format = variable_default_display (var.get ());
+      var->format = FORMAT_NATURAL;
       var->root->valid_block =
        var->root->floating ? NULL : tracker.block ();
       var->root->global
@@ -1871,14 +1869,6 @@ varobj_get_value_type (const struct varobj *var)
   return type;
 }
 
-/* What is the default display for this variable? We assume that
-   everything is "natural".  Any exceptions?  */
-static enum varobj_display_formats
-variable_default_display (struct varobj *var)
-{
-  return FORMAT_NATURAL;
-}
-
 /*
  * Language-dependencies
  */