diff options
Diffstat (limited to 'gdb/language.c')
-rw-r--r-- | gdb/language.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/language.c b/gdb/language.c index 18a7c9c..c070169 100644 --- a/gdb/language.c +++ b/gdb/language.c @@ -28,7 +28,6 @@ return data out of a "language-specific" struct pointer that is set whenever the working language changes. That would be a lot faster. */ -#include <ctype.h> #include "symtab.h" #include "gdbtypes.h" #include "value.h" @@ -976,7 +975,7 @@ language_arch_info::type_and_symbol::alloc_type_symbol symbol->set_section_index (0); symbol->set_type (type); symbol->set_domain (TYPE_DOMAIN); - symbol->set_aclass_index (LOC_TYPEDEF); + symbol->set_loc_class_index (LOC_TYPEDEF); return symbol; } @@ -1095,9 +1094,7 @@ language_lookup_primitive_type_as_symbol (const struct language_defn *la, /* Initialize the language routines. */ -void _initialize_language (); -void -_initialize_language () +INIT_GDB_FILE (language) { static const char *const type_or_range_names[] = { "on", "off", "warn", "auto", NULL }; |