This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[1/9] Fix typo in ada_language_arch_info
- From: "Ulrich Weigand" <uweigand at de dot ibm dot com>
- To: gdb-patches at sourceware dot org
- Date: Thu, 25 Aug 2016 17:05:48 +0200 (CEST)
- Subject: [1/9] Fix typo in ada_language_arch_info
- Authentication-results: sourceware.org; auth=none
Hello,
this patch fixes a bug introduced by a wrong replacement here:
https://sourceware.org/ml/gdb-patches/2007-06/msg00196.html
The Ada "long_long_float" type is supposed to correspond to the
platform ABI long double type, not double.
Bye,
Ulrich
ChangeLog:
* ada-lang.c (ada_language_arch_info): Use gdbarch_long_double_bit
instead of gdbarch_double_bit for "long_long_float".
Index: binutils-gdb/gdb/ada-lang.c
===================================================================
--- binutils-gdb.orig/gdb/ada-lang.c 2016-08-25 13:11:37.446784553 +0200
+++ binutils-gdb/gdb/ada-lang.c 2016-08-25 13:11:47.068826679 +0200
@@ -14012,7 +14012,7 @@ ada_language_arch_info (struct gdbarch *
= arch_integer_type (gdbarch, gdbarch_long_long_bit (gdbarch),
0, "long_long_integer");
lai->primitive_type_vector [ada_primitive_type_long_double]
- = arch_float_type (gdbarch, gdbarch_double_bit (gdbarch),
+ = arch_float_type (gdbarch, gdbarch_long_double_bit (gdbarch),
"long_long_float", NULL);
lai->primitive_type_vector [ada_primitive_type_natural]
= arch_integer_type (gdbarch, gdbarch_int_bit (gdbarch),
--
Dr. Ulrich Weigand
GNU/Linux compilers and toolchain
Ulrich.Weigand@de.ibm.com