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/language.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'gdb/language.h') diff --git a/gdb/language.h b/gdb/language.h index a4ec6fb..e9a2eff 100644 --- a/gdb/language.h +++ b/gdb/language.h @@ -149,10 +149,6 @@ struct language_defn int (*la_value_print) PARAMS ((struct value *, GDB_FILE *, int, enum val_prettyprint)); - /* Longest floating point type */ - - struct type **la_longest_float; - /* Base 2 (binary) formats. */ struct language_format_info la_binary_format; @@ -169,7 +165,6 @@ struct language_defn struct language_format_info la_hex_format; - /* Table for printing expressions */ const struct op_print *la_op_print_tab; @@ -240,9 +235,6 @@ set_language PARAMS ((enum language)); the current setting of working_lang, which the user sets with the "set language" command. */ -/* Returns some built-in types */ -#define longest_float() (*current_language->la_longest_float) - #define create_fundamental_type(objfile,typeid) \ (current_language->la_fund_type(objfile, typeid)) -- cgit v1.1