Home
last modified time | relevance | path

Searched refs:fmt_type (Results 1 – 1 of 1) sorted by relevance

/netbsd/src/external/gpl3/gdb/dist/gdb/
Dprintcmd.c2545 struct type *fmt_type; in printf_floating() local
2549 fmt_type = builtin_type (gdbarch)->builtin_double; in printf_floating()
2552 fmt_type = builtin_type (gdbarch)->builtin_long_double; in printf_floating()
2555 fmt_type = builtin_type (gdbarch)->builtin_decfloat; in printf_floating()
2558 fmt_type = builtin_type (gdbarch)->builtin_decdouble; in printf_floating()
2561 fmt_type = builtin_type (gdbarch)->builtin_declong; in printf_floating()
2587 if (fmt_type->code () == TYPE_CODE_FLT) in printf_floating()
2595 value = value_cast (fmt_type, value); in printf_floating()
2599 = target_float_to_string (value->contents ().data (), fmt_type, format); in printf_floating()