From 043b05b26b6562d9a20d260954a66de46089408b Mon Sep 17 00:00:00 2001 From: Stan Shebs Date: Wed, 3 Aug 1994 19:15:42 +0000 Subject: * language.h (struct language_defn): Remove unused field la_longest_float. (longest_float): Remove, no longer used. * language.c (unknown_language_defn, auto_language_defn, local_language_defn): Remove init of la_longest_float field. * c-lang.c (c_language_defn, cplus_language_defn, asm_language_defn): Ditto. * m2-lang.c (m2_language_defn): Ditto. --- gdb/c-lang.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'gdb/c-lang.c') diff --git a/gdb/c-lang.c b/gdb/c-lang.c index 422bde8f34d..98d09eb43b5 100644 --- a/gdb/c-lang.c +++ b/gdb/c-lang.c @@ -405,7 +405,6 @@ const struct language_defn c_language_defn = { c_print_type, /* Print a type using appropriate syntax */ c_val_print, /* Print a value using appropriate syntax */ c_value_print, /* Print a top-level value */ - &builtin_type_double, /* longest floating point type */ /*FIXME*/ {"", "", "", ""}, /* Binary format info */ {"0%lo", "0", "o", ""}, /* Octal format info */ {"%ld", "", "d", ""}, /* Decimal format info */ @@ -428,7 +427,6 @@ const struct language_defn cplus_language_defn = { c_print_type, /* Print a type using appropriate syntax */ c_val_print, /* Print a value using appropriate syntax */ c_value_print, /* Print a top-level value */ - &builtin_type_double, /* longest floating point type */ /*FIXME*/ {"", "", "", ""}, /* Binary format info */ {"0%lo", "0", "o", ""}, /* Octal format info */ {"%ld", "", "d", ""}, /* Decimal format info */ @@ -451,7 +449,6 @@ const struct language_defn asm_language_defn = { c_print_type, /* Print a type using appropriate syntax */ c_val_print, /* Print a value using appropriate syntax */ c_value_print, /* Print a top-level value */ - &builtin_type_double, /* longest floating point type */ /*FIXME*/ {"", "", "", ""}, /* Binary format info */ {"0%lo", "0", "o", ""}, /* Octal format info */ {"%ld", "", "d", ""}, /* Decimal format info */ -- cgit v1.2.1