aboutsummaryrefslogtreecommitdiff
path: root/gdb/scm-lang.c
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2008-09-11 14:16:51 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2008-09-11 14:16:51 +0000
commitcb18ec49971fe854438c21c6fd9bd08672d476e6 (patch)
tree99d255f81a9486937272d03aeb12ffe8cacf94e7 /gdb/scm-lang.c
parent0ab7ba45fa26e78626617b4d90725fc921c74f69 (diff)
downloadfsf-binutils-gdb-cb18ec49971fe854438c21c6fd9bd08672d476e6.zip
fsf-binutils-gdb-cb18ec49971fe854438c21c6fd9bd08672d476e6.tar.gz
fsf-binutils-gdb-cb18ec49971fe854438c21c6fd9bd08672d476e6.tar.bz2
* eval.c (evaluate_subexp_standard): Use builtin_type_int8
to construct the EVAL_SKIP dummy return value. * ada-lang.c (ada_evaluate_subexp): Likewise. * jv-lang.c (evaluate_subexp_java): Likewise. * m2-lang.c (evaluate_subexp_modula2): Likewise. * scm-lang.c (evaluate_exp): Likewise.
Diffstat (limited to 'gdb/scm-lang.c')
-rw-r--r--gdb/scm-lang.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/scm-lang.c b/gdb/scm-lang.c
index 991e4b4..08f016d 100644
--- a/gdb/scm-lang.c
+++ b/gdb/scm-lang.c
@@ -220,7 +220,7 @@ evaluate_exp (struct type *expect_type, struct expression *exp,
}
return evaluate_subexp_standard (expect_type, exp, pos, noside);
nosideret:
- return value_from_longest (builtin_type_long, (LONGEST) 1);
+ return value_from_longest (builtin_type_int8, (LONGEST) 1);
}
const struct exp_descriptor exp_descriptor_scm =