Move val_prettyformat to valprint.h
authorTom Tromey <tromey@adacore.com>
Tue, 5 Sep 2023 18:30:08 +0000 (12:30 -0600)
committerTom Tromey <tromey@adacore.com>
Mon, 18 Sep 2023 18:21:07 +0000 (12:21 -0600)
I stumbled across an ancient FIXME comment that was easy to fix --
val_prettyformat does not need to be in defs.h, and is easily moved to
valprint.h, where (despite what the comment says) it belongs.

Tested by rebuilding.

gdb/defs.h
gdb/valprint.h

index 454475b203c354a833e6a95c0d34d5c923611cb4..f5af3e617c43721d04a356585f26c6f571d5170c 100644 (file)
@@ -410,20 +410,6 @@ enum info_proc_what
 extern unsigned input_radix;
 extern unsigned output_radix;
 
-/* * Possibilities for prettyformat parameters to routines which print
-   things.  Like enum language, this should be in value.h, but needs
-   to be here for the same reason.  FIXME:  If we can eliminate this
-   as an arg to LA_VAL_PRINT, then we can probably move it back to
-   value.h.  */
-
-enum val_prettyformat
-  {
-    Val_no_prettyformat = 0,
-    Val_prettyformat,
-    /* * Use the default setting which the user has specified.  */
-    Val_prettyformat_default
-  };
-
 /* * Optional native machine support.  Non-native (and possibly pure
    multi-arch) targets do not need a "nm.h" file.  This will be a
    symlink to one of the nm-*.h files, built by the `configure'
index cf5e2f210e43cf921ae5a6a89bee2775933d0c47..0a8878055d76979137e6a474041eead870d7b724 100644 (file)
 
 #include "cli/cli-option.h"
 
+/* Possibilities for prettyformat parameters to routines which print
+   things.  */
+
+enum val_prettyformat
+  {
+    Val_no_prettyformat = 0,
+    Val_prettyformat,
+    /* * Use the default setting which the user has specified.  */
+    Val_prettyformat_default
+  };
+
 /* This is used to pass formatting options to various value-printing
    functions.  */
 struct value_print_options