2002-08-01 Andrew Cagney <cagney@redhat.com>
* NEWS: Menion that CHILL has been made obsolete. * gdbtypes.c (chill_varying_type): Make chill references obsolete. * gdbserver/Makefile.in: Ditto. * stabsread.c (read_range_type): Ditto. * gdbtypes.h: Ditto. * language.c (binop_type_check): Ditto. (binop_result_type): Ditto. (integral_type): Ditto. (character_type): Ditto. (string_type): Ditto. (boolean_type): Ditto. (structured_type): Ditto. (lang_bool_type): Ditto. (binop_type_check): Ditto. * language.h (_LANG_chill): Ditto. * dwarfread.c (set_cu_language): Ditto. * dwarfread.c (CHILL_PRODUCER): Ditto. * dwarfread.c (handle_producer): Ditto. * expression.h (enum exp_opcode): Ditto. * eval.c: Ditto for comments. * typeprint.c (typedef_print) [_LANG_chill]: Ditto. * expprint.c (print_subexp): Ditto. (print_subexp): Ditto. * valops.c (value_cast): Ditto. (search_struct_field): Ditto. * value.h (COERCE_VARYING_ARRAY): Ditto. * symfile.c (init_filename_language_table): Ditto. (add_psymbol_with_dem_name_to_list): Ditto. * valarith.c (value_binop): Ditto. (value_neg): Ditto. * valops.c (value_slice): Ditto. * symtab.h (union language_specific): Ditto. (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto. (SYMBOL_DEMANGLED_NAME): Ditto. (SYMBOL_CHILL_DEMANGLED_NAME): Ditto. * defs.h (enum language): Ditto. * symtab.c (got_symtab): Ditto. * utils.c (fprintf_symbol_filtered): Ditto. * ch-typeprint.c: Make file obsolete. * ch-valprint.c: Make file obsolete. * ch-lang.h: Make file obsolete. * ch-exp.c: Make file obsolete. * ch-lang.c: Make file obsolete. * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or CHILL_LIB. (TARGET_FLAGS_TO_PASS): Ditto. (CHILLFLAGS): Obsolete. (CHILL): Obsolete. (CHILL_FOR_TARGET): Obsolete. (CHILL_LIB): Obsolete. (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and ch-valprint.c. (HFILES_NO_SRCDIR): Remove ch-lang.h. (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and ch-lang.o. (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete targets. 2002-08-01 Andrew Cagney <cagney@redhat.com> * stabs.texinfo, gdb.texinfo, gdbint.texinfo: Obsolete references to CHILL. 2002-08-01 Andrew Cagney <cagney@redhat.com> * Makefile.in (TARGET_FLAGS_TO_PASS): Remove CHILLFLAGS, CHILL, CHILL_FOR_TARGET and CHILL_LIB. * configure.in (configdirs): Remove gdb.chill. * configure: Regenerate. * lib/gdb.exp: Obsolete references to chill. * gdb.fortran/types.exp: Ditto. * gdb.fortran/exprs.exp: Ditto.
This commit is contained in:
parent
e2b28d048d
commit
db034ac512
38 changed files with 4803 additions and 4715 deletions
|
@ -567,8 +567,8 @@ binop_result_type (struct value *v1, struct value *v2)
|
|||
not needed. */
|
||||
return l1 > l2 ? VALUE_TYPE (v1) : VALUE_TYPE (v2);
|
||||
break;
|
||||
case language_chill:
|
||||
error ("Missing Chill support in function binop_result_check."); /*FIXME */
|
||||
/* OBSOLETE case language_chill: */
|
||||
/* OBSOLETE error ("Missing Chill support in function binop_result_check."); */ /*FIXME */
|
||||
}
|
||||
internal_error (__FILE__, __LINE__, "failed internal consistency check");
|
||||
return (struct type *) 0; /* For lint */
|
||||
|
@ -791,8 +791,8 @@ integral_type (struct type *type)
|
|||
case language_m2:
|
||||
case language_pascal:
|
||||
return TYPE_CODE (type) != TYPE_CODE_INT ? 0 : 1;
|
||||
case language_chill:
|
||||
error ("Missing Chill support in function integral_type."); /*FIXME */
|
||||
/* OBSOLETE case language_chill: */
|
||||
/* OBSOLETE error ("Missing Chill support in function integral_type."); *//*FIXME */
|
||||
default:
|
||||
error ("Language not supported.");
|
||||
}
|
||||
|
@ -821,7 +821,7 @@ character_type (struct type *type)
|
|||
CHECK_TYPEDEF (type);
|
||||
switch (current_language->la_language)
|
||||
{
|
||||
case language_chill:
|
||||
/* OBSOLETE case language_chill: */
|
||||
case language_m2:
|
||||
case language_pascal:
|
||||
return TYPE_CODE (type) != TYPE_CODE_CHAR ? 0 : 1;
|
||||
|
@ -843,7 +843,7 @@ string_type (struct type *type)
|
|||
CHECK_TYPEDEF (type);
|
||||
switch (current_language->la_language)
|
||||
{
|
||||
case language_chill:
|
||||
/* OBSOLETE case language_chill: */
|
||||
case language_m2:
|
||||
case language_pascal:
|
||||
return TYPE_CODE (type) != TYPE_CODE_STRING ? 0 : 1;
|
||||
|
@ -868,8 +868,9 @@ boolean_type (struct type *type)
|
|||
{
|
||||
case language_c:
|
||||
case language_cplus:
|
||||
/* Might be more cleanly handled by having a TYPE_CODE_INT_NOT_BOOL
|
||||
for CHILL and such languages, or a TYPE_CODE_INT_OR_BOOL for C. */
|
||||
/* Might be more cleanly handled by having a
|
||||
TYPE_CODE_INT_NOT_BOOL for (OBSOLETE) CHILL and such
|
||||
languages, or a TYPE_CODE_INT_OR_BOOL for C. */
|
||||
if (TYPE_CODE (type) == TYPE_CODE_INT)
|
||||
return 1;
|
||||
default:
|
||||
|
@ -915,8 +916,8 @@ structured_type (struct type *type)
|
|||
return (TYPE_CODE (type) == TYPE_CODE_STRUCT) ||
|
||||
(TYPE_CODE (type) == TYPE_CODE_SET) ||
|
||||
(TYPE_CODE (type) == TYPE_CODE_ARRAY);
|
||||
case language_chill:
|
||||
error ("Missing Chill support in function structured_type."); /*FIXME */
|
||||
/* OBSOLETE case language_chill: */
|
||||
/* OBSOLETE error ("Missing Chill support in function structured_type."); *//*FIXME */
|
||||
default:
|
||||
return (0);
|
||||
}
|
||||
|
@ -930,8 +931,10 @@ lang_bool_type (void)
|
|||
struct type *type;
|
||||
switch (current_language->la_language)
|
||||
{
|
||||
case language_chill:
|
||||
return builtin_type_chill_bool;
|
||||
#if 0
|
||||
/* OBSOLETE case language_chill: */
|
||||
/* OBSOLETE return builtin_type_chill_bool; */
|
||||
#endif
|
||||
case language_fortran:
|
||||
sym = lookup_symbol ("logical", NULL, VAR_NAMESPACE, NULL, NULL);
|
||||
if (sym)
|
||||
|
@ -1161,9 +1164,9 @@ binop_type_check (struct value *arg1, struct value *arg2, int op)
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifdef _LANG_chill
|
||||
case language_chill:
|
||||
error ("Missing Chill support in function binop_type_check."); /*FIXME */
|
||||
#ifdef _LANG_chill /* OBSOLETE */
|
||||
/* OBSOLETE case language_chill: */
|
||||
/* OBSOLETE error ("Missing Chill support in function binop_type_check."); *//*FIXME */
|
||||
#endif
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue