diff options
author | Randolph Chung <tausq@debian.org> | 2004-05-26 05:51:39 +0000 |
---|---|---|
committer | Randolph Chung <tausq@debian.org> | 2004-05-26 05:51:39 +0000 |
commit | c3877fe58123c68f1694522ad5b6c8ccfc55948c (patch) | |
tree | 591c15896699c7d152ac41b0ac9fd03d64f317a0 /gdb/hppa-linux-tdep.c | |
parent | 8f66d27eccc01ab687e0f167a06295d3508d9dc2 (diff) | |
download | gdb-c3877fe58123c68f1694522ad5b6c8ccfc55948c.tar.gz |
2004-05-25 Randolph Chung <tausq@debian.org>
* hppa-linux-tdep.c (hppa_linux_init_abi): sizeof(long double) == 8 on
hppa-linux.
Diffstat (limited to 'gdb/hppa-linux-tdep.c')
-rw-r--r-- | gdb/hppa-linux-tdep.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/hppa-linux-tdep.c b/gdb/hppa-linux-tdep.c index 8f3c632a152..f1639247bb8 100644 --- a/gdb/hppa-linux-tdep.c +++ b/gdb/hppa-linux-tdep.c @@ -493,6 +493,11 @@ hppa_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) /* GNU/Linux uses the dynamic linker included in the GNU C Library. */ set_gdbarch_skip_solib_resolver (gdbarch, glibc_skip_solib_resolver); + /* On hppa-linux, currently, sizeof(long double) == 8. There has been + some discussions to support 128-bit long double, but it requires some + more work in gcc and glibc first. */ + set_gdbarch_long_double_bit (gdbarch, 64); + #if 0 /* Dwarf-2 unwinding support. Not yet working. */ set_gdbarch_dwarf_reg_to_regnum (gdbarch, hppa_dwarf_reg_to_regnum); |