mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
* ada-valprint.c (ada_val_print_1): Use val_print_string to print
result of ada_vax_float_print_function inferior call.
This commit is contained in:
parent
17280b9f0a
commit
aaa88a990d
@ -1,3 +1,8 @@
|
||||
2009-05-18 Ulrich Weigand <uweigand@de.ibm.com>
|
||||
|
||||
* ada-valprint.c (ada_val_print_1): Use val_print_string to print
|
||||
result of ada_vax_float_print_function inferior call.
|
||||
|
||||
2009-05-18 Ulrich Weigand <uweigand@de.ibm.com>
|
||||
|
||||
* ada-lang.c (ada_coerce_to_simple_array_type): Reimplement to
|
||||
|
@ -739,22 +739,10 @@ ada_val_print_1 (struct type *type, const gdb_byte *valaddr0,
|
||||
struct value *func = ada_vax_float_print_function (type);
|
||||
if (func != 0)
|
||||
{
|
||||
static struct type *parray_of_char = NULL;
|
||||
struct value *printable_val;
|
||||
|
||||
if (parray_of_char == NULL)
|
||||
parray_of_char =
|
||||
make_pointer_type
|
||||
(create_array_type
|
||||
(NULL, builtin_type_true_char,
|
||||
create_range_type (NULL, builtin_type_int32, 0, 32)), NULL);
|
||||
|
||||
printable_val =
|
||||
value_ind (value_cast (parray_of_char,
|
||||
call_function_by_hand (func, 1,
|
||||
&val)));
|
||||
|
||||
fprintf_filtered (stream, "%s", value_contents (printable_val));
|
||||
CORE_ADDR addr;
|
||||
addr = value_as_address (call_function_by_hand (func, 1, &val));
|
||||
val_print_string (builtin_type_true_char,
|
||||
addr, -1, stream, options);
|
||||
return 0;
|
||||
}
|
||||
/* No special printing function. Do as best we can. */
|
||||
|
Loading…
Reference in New Issue
Block a user