aboutsummaryrefslogtreecommitdiff
path: root/gdb/language.h
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1994-08-03 19:15:42 +0000
committerStan Shebs <shebs@codesourcery.com>1994-08-03 19:15:42 +0000
commit043b05b26b6562d9a20d260954a66de46089408b (patch)
tree4afbc27edbab35e971406ff540530fb5f14db9f4 /gdb/language.h
parente696f6a9b92b097130cad284fea2782e4fd06220 (diff)
downloadfsf-binutils-gdb-043b05b26b6562d9a20d260954a66de46089408b.zip
fsf-binutils-gdb-043b05b26b6562d9a20d260954a66de46089408b.tar.gz
fsf-binutils-gdb-043b05b26b6562d9a20d260954a66de46089408b.tar.bz2
* 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.h')
-rw-r--r--gdb/language.h8
1 files changed, 0 insertions, 8 deletions
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))