aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbtypes.c
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2002-02-08 17:34:33 +0000
committerCorinna Vinschen <corinna@vinschen.de>2002-02-08 17:34:33 +0000
commit9c9532c936fcd6b3cd4d637d440fa2ae67b18249 (patch)
tree6421572251c782238b74f8d564120f0b5da7ec8d /gdb/gdbtypes.c
parent4e8f7a8b2731c2e29031ec1b6796f5688935573d (diff)
downloadgdb-9c9532c936fcd6b3cd4d637d440fa2ae67b18249.zip
gdb-9c9532c936fcd6b3cd4d637d440fa2ae67b18249.tar.gz
gdb-9c9532c936fcd6b3cd4d637d440fa2ae67b18249.tar.bz2
* gdbtypes.c (build_gdbtypes): Disable setting a specific float format
on builtin float types.
Diffstat (limited to 'gdb/gdbtypes.c')
-rw-r--r--gdb/gdbtypes.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c
index 2877f7a..a13847e 100644
--- a/gdb/gdbtypes.c
+++ b/gdb/gdbtypes.c
@@ -3153,17 +3153,31 @@ build_gdbtypes (void)
init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
0,
"float", (struct objfile *) NULL);
+/* vinschen@redhat.com 2002-02-08:
+ The below lines are disabled since they are doing the wrong
+ thing for non-multiarch targets. They are setting the correct
+ type of floats for the target but while on multiarch targets
+ this is done everytime the architecture changes, it's done on
+ non-multiarch targets only on startup, leaving the wrong values
+ in even if the architecture changes (eg. from big-endian to
+ little-endian). */
+#if 0
TYPE_FLOATFORMAT (builtin_type_float) = TARGET_FLOAT_FORMAT;
+#endif
builtin_type_double =
init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
0,
"double", (struct objfile *) NULL);
+#if 0
TYPE_FLOATFORMAT (builtin_type_double) = TARGET_DOUBLE_FORMAT;
+#endif
builtin_type_long_double =
init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
0,
"long double", (struct objfile *) NULL);
+#if 0
TYPE_FLOATFORMAT (builtin_type_long_double) = TARGET_LONG_DOUBLE_FORMAT;
+#endif
builtin_type_complex =
init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
0,