diff options
Diffstat (limited to 'gdb/valprint.c')
-rw-r--r-- | gdb/valprint.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/valprint.c b/gdb/valprint.c index fd573c2..286ef9e 100644 --- a/gdb/valprint.c +++ b/gdb/valprint.c @@ -305,6 +305,12 @@ val_print_unavailable (struct ui_file *stream) fprintf_filtered (stream, _("<unavailable>")); } +void +val_print_invalid_address (struct ui_file *stream) +{ + fprintf_filtered (stream, _("<invalid address>")); +} + /* Print using the given LANGUAGE the data of type TYPE located at VALADDR + EMBEDDED_OFFSET (within GDB), which came from the inferior at address ADDRESS + EMBEDDED_OFFSET, onto stdio stream |