summaryrefslogtreecommitdiff
path: root/gdb/typeprint.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/typeprint.c')
-rw-r--r--gdb/typeprint.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/gdb/typeprint.c b/gdb/typeprint.c
index 8fbd1789a89..377223a4711 100644
--- a/gdb/typeprint.c
+++ b/gdb/typeprint.c
@@ -727,3 +727,20 @@ Show printing of typedefs defined in classes."), NULL,
show_print_type_typedefs,
&setprinttypelist, &showprinttypelist);
}
+
+/* Print <not allocated> status to stream STREAM. */
+
+void
+val_print_not_allocated (struct ui_file *stream)
+{
+ fprintf_filtered (stream, _("<not allocated>"));
+}
+
+/* Print <not associated> status to stream STREAM. */
+
+void
+val_print_not_associated (struct ui_file *stream)
+{
+ fprintf_filtered (stream, _("<not associated>"));
+}
+