diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-02-03 03:44:15 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-02-03 03:44:15 +0000 |
commit | ce855594950709b54073697eff14f8866ff8a2f7 (patch) | |
tree | 1debdcc765c1619e49bdf32dfce9b061507deb0e /gdb/language.c | |
parent | 78c3dc5cee99dd0377087015b3d3e3ef3096a6a6 (diff) | |
download | gdb-ce855594950709b54073697eff14f8866ff8a2f7.zip gdb-ce855594950709b54073697eff14f8866ff8a2f7.tar.gz gdb-ce855594950709b54073697eff14f8866ff8a2f7.tar.bz2 |
* language.h, c-lang.c, ch-lang.c, m2-lang.c, language.c: Remove
longest_int and longest_unsigned_int.
Diffstat (limited to 'gdb/language.c')
-rw-r--r-- | gdb/language.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/language.c b/gdb/language.c index 03cf667..86f37d4 100644 --- a/gdb/language.c +++ b/gdb/language.c @@ -1183,8 +1183,6 @@ const struct language_defn unknown_language_defn = { unk_lang_create_fundamental_type, unk_lang_print_type, /* Print a type using appropriate syntax */ unk_lang_val_print, /* Print a value using appropriate syntax */ - &builtin_type_error, /* longest signed integral type */ - &builtin_type_error, /* longest unsigned integral type */ &builtin_type_error, /* longest floating point type */ {"", "", "", ""}, /* Binary format info */ {"0%lo", "0", "o", ""}, /* Octal format info */ @@ -1208,8 +1206,6 @@ const struct language_defn auto_language_defn = { unk_lang_create_fundamental_type, unk_lang_print_type, /* Print a type using appropriate syntax */ unk_lang_val_print, /* Print a value using appropriate syntax */ - &builtin_type_error, /* longest signed integral type */ - &builtin_type_error, /* longest unsigned integral type */ &builtin_type_error, /* longest floating point type */ {"", "", "", ""}, /* Binary format info */ {"0%lo", "0", "o", ""}, /* Octal format info */ @@ -1232,8 +1228,6 @@ const struct language_defn local_language_defn = { unk_lang_create_fundamental_type, unk_lang_print_type, /* Print a type using appropriate syntax */ unk_lang_val_print, /* Print a value using appropriate syntax */ - &builtin_type_error, /* longest signed integral type */ - &builtin_type_error, /* longest unsigned integral type */ &builtin_type_error, /* longest floating point type */ {"", "", "", ""}, /* Binary format info */ {"0%lo", "0", "o", ""}, /* Octal format info */ |