aboutsummaryrefslogtreecommitdiff
path: root/gdb/c-lang.c
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1995-02-12 19:21:04 +0000
committerPer Bothner <per@bothner.com>1995-02-12 19:21:04 +0000
commit7398958c7d7356235a818cca7da57d9377ee0556 (patch)
treec024f941aea7b6d4eb7ae6ca15fa7403aa3c4edc /gdb/c-lang.c
parent60438e8e3e963c5d06ffb85d30ec74d680b06f24 (diff)
downloadfsf-binutils-gdb-7398958c7d7356235a818cca7da57d9377ee0556.zip
fsf-binutils-gdb-7398958c7d7356235a818cca7da57d9377ee0556.tar.gz
fsf-binutils-gdb-7398958c7d7356235a818cca7da57d9377ee0556.tar.bz2
* 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.
Diffstat (limited to 'gdb/c-lang.c')
-rw-r--r--gdb/c-lang.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/c-lang.c b/gdb/c-lang.c
index 5c6b0b5..d7e5536 100644
--- a/gdb/c-lang.c
+++ b/gdb/c-lang.c
@@ -399,6 +399,7 @@ const struct language_defn c_language_defn = {
type_check_off,
c_parse,
c_error,
+ evaluate_subexp_standard,
c_printchar, /* Print a character constant */
c_printstr, /* Function to print string constant */
c_create_fundamental_type, /* Create fundamental type in this language */
@@ -424,6 +425,7 @@ const struct language_defn cplus_language_defn = {
type_check_off,
c_parse,
c_error,
+ evaluate_subexp_standard,
c_printchar, /* Print a character constant */
c_printstr, /* Function to print string constant */
c_create_fundamental_type, /* Create fundamental type in this language */
@@ -449,6 +451,7 @@ const struct language_defn asm_language_defn = {
type_check_off,
c_parse,
c_error,
+ evaluate_subexp_standard,
c_printchar, /* Print a character constant */
c_printstr, /* Function to print string constant */
c_create_fundamental_type, /* Create fundamental type in this language */