diff options
author | Joel Brobecker <brobecker@gnat.com> | 2009-06-23 16:37:19 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2009-06-23 16:37:19 +0000 |
commit | 4b27a62068e668a3388d810ac078edadc5ff8822 (patch) | |
tree | 8f2bdbad9b4dc60daa8957f9eed8df34430d8f7c /gdb/eval.c | |
parent | 69de3c6af9e2484e4ac27d2a79fa2abb25b552d9 (diff) | |
download | gdb-4b27a62068e668a3388d810ac078edadc5ff8822.zip gdb-4b27a62068e668a3388d810ac078edadc5ff8822.tar.gz gdb-4b27a62068e668a3388d810ac078edadc5ff8822.tar.bz2 |
* ada-lang.c (evaluate_subexp): Delete. Use the version from eval.c.
(evaluate_subexp_type): Reimplement using evaluate_subexp.
* value.h (evaluate_subexp): Add declaration.
* eval.c (evaluate_subexp): Make non-static.
* objc-lang.c (print_object_command): Use evaluate_subexp.
Diffstat (limited to 'gdb/eval.c')
-rw-r--r-- | gdb/eval.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -56,9 +56,6 @@ static struct value *evaluate_subexp_for_sizeof (struct expression *, int *); static struct value *evaluate_subexp_for_address (struct expression *, int *, enum noside); -static struct value *evaluate_subexp (struct type *, struct expression *, - int *, enum noside); - static char *get_label (struct expression *, int *); static struct value *evaluate_struct_tuple (struct value *, @@ -69,7 +66,7 @@ static LONGEST init_array_element (struct value *, struct value *, struct expression *, int *, enum noside, LONGEST, LONGEST); -static struct value * +struct value * evaluate_subexp (struct type *expect_type, struct expression *exp, int *pos, enum noside noside) { |