diff options
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 5ada1e8..4a91a40 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1957,7 +1957,7 @@ default_print_registers_info (struct gdbarch *gdbarch, get_user_print_options (&opts); opts.deref_ref = 1; val_print (register_type (gdbarch, i), buffer, 0, 0, - file, 0, &opts, current_language); + file, 0, NULL, &opts, current_language); fprintf_filtered (file, "\t(raw 0x"); for (j = 0; j < register_size (gdbarch, i); j++) @@ -1980,8 +1980,7 @@ default_print_registers_info (struct gdbarch *gdbarch, get_formatted_print_options (&opts, 'x'); opts.deref_ref = 1; val_print (register_type (gdbarch, i), buffer, 0, 0, - file, 0, &opts, - current_language); + file, 0, NULL, &opts, current_language); /* If not a vector register, print it also according to its natural format. */ if (TYPE_VECTOR (register_type (gdbarch, i)) == 0) @@ -1990,7 +1989,7 @@ default_print_registers_info (struct gdbarch *gdbarch, opts.deref_ref = 1; fprintf_filtered (file, "\t"); val_print (register_type (gdbarch, i), buffer, 0, 0, - file, 0, &opts, current_language); + file, 0, NULL, &opts, current_language); } } |