diff options
Diffstat (limited to 'gdb/ia64-tdep.c')
-rw-r--r-- | gdb/ia64-tdep.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c index 88e0e20..6b2dba6 100644 --- a/gdb/ia64-tdep.c +++ b/gdb/ia64-tdep.c @@ -2480,9 +2480,9 @@ ia64_find_proc_info_x (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, return -UNW_ENOINFO; if (gdbarch_debug >= 1) - fprintf_unfiltered (gdb_stdlog, "%s: %lx -> " + fprintf_unfiltered (gdb_stdlog, "ia64_find_proc_info_x: %lx -> " "(name=`%s',segbase=%lx,start=%lx,end=%lx,gp=%lx," - "length=%lu,data=%p)\n", __FUNCTION__, + "length=%lu,data=%p)\n", ip, (char *)di.u.ti.name_ptr, di.u.ti.segbase, di.start_ip, di.end_ip, di.gp, di.u.ti.table_len, di.u.ti.table_data); @@ -2494,9 +2494,9 @@ ia64_find_proc_info_x (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, return ret; if (gdbarch_debug >= 1) - fprintf_unfiltered (gdb_stdlog, "%s: %lx -> " + fprintf_unfiltered (gdb_stdlog, "ia64_find_proc_info_x: %lx -> " "(name=`%s',segbase=%lx,start=%lx,end=%lx,gp=%lx," - "length=%lu,data=%lx)\n", __FUNCTION__, + "length=%lu,data=%lx)\n", ip, (char *)di.u.rti.name_ptr, di.u.rti.segbase, di.start_ip, di.end_ip, di.gp, di.u.rti.table_len, di.u.rti.table_data); @@ -3356,12 +3356,14 @@ ia64_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) 0, "builtin_type_ia64_ext", NULL); TYPE_FLOATFORMAT (builtin_type_ia64_ext) = &floatformat_ia64_ext; - /* According to the ia64 specs, instructions that store long double floats - in memory use a long-double format different than that used in the floating - registers. The memory format matches the x86 extended float format which is - 80 bits. An OS may choose to use this format (e.g. Linux) or choose to use - a different format for storing long doubles (e.g. HPUX). In the latter case, - the setting of the format may be moved/overridden in an OS-specific tdep file. */ + /* According to the ia64 specs, instructions that store long double + floats in memory use a long-double format different than that + used in the floating registers. The memory format matches the + x86 extended float format which is 80 bits. An OS may choose to + use this format (e.g. GNU/Linux) or choose to use a different + format for storing long doubles (e.g. HPUX). In the latter case, + the setting of the format may be moved/overridden in an + OS-specific tdep file. */ set_gdbarch_long_double_format (gdbarch, &floatformat_i387_ext); set_gdbarch_short_bit (gdbarch, 16); @@ -3423,8 +3425,6 @@ ia64_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) /* Settings that should be unnecessary. */ set_gdbarch_inner_than (gdbarch, core_addr_lessthan); - set_gdbarch_decr_pc_after_break (gdbarch, 0); - set_gdbarch_function_start_offset (gdbarch, 0); set_gdbarch_frame_args_skip (gdbarch, 0); set_gdbarch_remote_translate_xfer_address ( |