diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-08-03 19:15:42 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-08-03 19:15:42 +0000 |
commit | 043b05b26b6562d9a20d260954a66de46089408b (patch) | |
tree | 4afbc27edbab35e971406ff540530fb5f14db9f4 /gdb/language.c | |
parent | e696f6a9b92b097130cad284fea2782e4fd06220 (diff) | |
download | ppe42-binutils-043b05b26b6562d9a20d260954a66de46089408b.tar.gz ppe42-binutils-043b05b26b6562d9a20d260954a66de46089408b.zip |
* 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.
Diffstat (limited to 'gdb/language.c')
-rw-r--r-- | gdb/language.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/language.c b/gdb/language.c index 4a3b6a0ee6..c06decb0e9 100644 --- a/gdb/language.c +++ b/gdb/language.c @@ -1194,7 +1194,6 @@ const struct language_defn unknown_language_defn = { unk_lang_print_type, /* Print a type using appropriate syntax */ unk_lang_val_print, /* Print a value using appropriate syntax */ unk_lang_value_print, /* Print a top-level value */ - &builtin_type_error, /* longest floating point type */ {"", "", "", ""}, /* Binary format info */ {"0%lo", "0", "o", ""}, /* Octal format info */ {"%ld", "", "d", ""}, /* Decimal format info */ @@ -1218,7 +1217,6 @@ const struct language_defn auto_language_defn = { unk_lang_print_type, /* Print a type using appropriate syntax */ unk_lang_val_print, /* Print a value using appropriate syntax */ unk_lang_value_print, /* Print a top-level value */ - &builtin_type_error, /* longest floating point type */ {"", "", "", ""}, /* Binary format info */ {"0%lo", "0", "o", ""}, /* Octal format info */ {"%ld", "", "d", ""}, /* Decimal format info */ @@ -1241,7 +1239,6 @@ const struct language_defn local_language_defn = { unk_lang_print_type, /* Print a type using appropriate syntax */ unk_lang_val_print, /* Print a value using appropriate syntax */ unk_lang_value_print, /* Print a top-level value */ - &builtin_type_error, /* longest floating point type */ {"", "", "", ""}, /* Binary format info */ {"0%lo", "0", "o", ""}, /* Octal format info */ {"%ld", "", "d", ""}, /* Decimal format info */ |