mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
* language.h (struct language_defn): New field evaluate_exp.
* c-lang.c (c_language_defn, cplus_language_defn, asm_langauge_defn), f-lang.c (f_language_defn), language.c (unknown_language_defn, auto_language_defn, local_language_defn), m2-lang.c (m2_language_defn): Set evaluate_exp to evaluate_subexp_standard. * ch-lang.c (evaluate_subexp_chill): New function. Chill-specific support for MULTI_SUBSCRIPT. (chill_language_defn): Set evaluate_exp to evaluate_subexp_chill. * eval.c (enum noside): Move from here .... * expression.h (enum noside): ... to here. (evaluate_subexp_standard): New prototype. * eval.c (evaluate_subexp): Renamed to evaluate_subexp_standard. Removed lo-longer-needed test for chill_varying_type. (evaluate_subexp): New. Calls exp->language_defn->evaluate_exp.
This commit is contained in:
@@ -1189,6 +1189,7 @@ const struct language_defn unknown_language_defn = {
|
||||
type_check_off,
|
||||
unk_lang_parser,
|
||||
unk_lang_error,
|
||||
evaluate_subexp_standard,
|
||||
unk_lang_printchar, /* Print character constant */
|
||||
unk_lang_printstr,
|
||||
unk_lang_create_fundamental_type,
|
||||
@@ -1215,6 +1216,7 @@ const struct language_defn auto_language_defn = {
|
||||
type_check_off,
|
||||
unk_lang_parser,
|
||||
unk_lang_error,
|
||||
evaluate_subexp_standard,
|
||||
unk_lang_printchar, /* Print character constant */
|
||||
unk_lang_printstr,
|
||||
unk_lang_create_fundamental_type,
|
||||
@@ -1240,6 +1242,7 @@ const struct language_defn local_language_defn = {
|
||||
type_check_off,
|
||||
unk_lang_parser,
|
||||
unk_lang_error,
|
||||
evaluate_subexp_standard,
|
||||
unk_lang_printchar, /* Print character constant */
|
||||
unk_lang_printstr,
|
||||
unk_lang_create_fundamental_type,
|
||||
|
||||
Reference in New Issue
Block a user