diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-06-11 22:03:16 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-06-11 22:03:16 +0000 |
commit | 33c081509ef98f9ea2702cb8e6150e0bbf277ab2 (patch) | |
tree | 6c0165b215a3698b673626d1d2df3eeca4b0a3ae | |
parent | d80dcc6af40cf05ba30497778ca0c3c510f18861 (diff) | |
download | gdb-33c081509ef98f9ea2702cb8e6150e0bbf277ab2.zip gdb-33c081509ef98f9ea2702cb8e6150e0bbf277ab2.tar.gz gdb-33c081509ef98f9ea2702cb8e6150e0bbf277ab2.tar.bz2 |
2003-06-11 Jeff Johnston <jjohnstn@redhat.com>
* ia64-tdep.c (ia64_gdbarch_init): Set number of long double
bits to 128.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/ia64-tdep.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 67fa68a..065be20 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-06-11 Jeff Johnston <jjohnstn@redhat.com> + + * ia64-tdep.c (ia64_gdbarch_init): Set number of long double + bits to 128. + 2003-06-11 Andrew Cagney <cagney@redhat.com> * gdbarch.sh (DEPRECATED_REGISTER_CONVERTIBLE): Deprecate diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c index 9d829c5..9866fa5 100644 --- a/gdb/ia64-tdep.c +++ b/gdb/ia64-tdep.c @@ -2243,7 +2243,7 @@ ia64_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) set_gdbarch_long_long_bit (gdbarch, 64); set_gdbarch_float_bit (gdbarch, 32); set_gdbarch_double_bit (gdbarch, 64); - set_gdbarch_long_double_bit (gdbarch, 64); + set_gdbarch_long_double_bit (gdbarch, 128); set_gdbarch_ptr_bit (gdbarch, 64); set_gdbarch_num_regs (gdbarch, ia64_num_regs); |