aboutsummaryrefslogtreecommitdiff
path: root/gdb/parse.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2007-12-16 13:31:46 +0000
committerJoel Brobecker <brobecker@gnat.com>2007-12-16 13:31:46 +0000
commit7f7f83e8b1993e1f3591db3ce5665c9c6dc78401 (patch)
treec47fe79ab29ef763a9d6950f690ca10e54eda9ee /gdb/parse.c
parent606bc03a5d16d786e8f8478c9748a07410a3f4c1 (diff)
downloadgdb-7f7f83e8b1993e1f3591db3ce5665c9c6dc78401.zip
gdb-7f7f83e8b1993e1f3591db3ce5665c9c6dc78401.tar.gz
gdb-7f7f83e8b1993e1f3591db3ce5665c9c6dc78401.tar.bz2
* expression.h (parse_expression_in_context): Delete prototype.
* parse.c (parse_expression_in_context): Delete.
Diffstat (limited to 'gdb/parse.c')
-rw-r--r--gdb/parse.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gdb/parse.c b/gdb/parse.c
index 1b9066d..81f6787 100644
--- a/gdb/parse.c
+++ b/gdb/parse.c
@@ -1027,20 +1027,6 @@ parse_expression (char *string)
return exp;
}
-
-/* As for parse_expression, except that if VOID_CONTEXT_P, then
- no value is expected from the expression. */
-
-struct expression *
-parse_expression_in_context (char *string, int void_context_p)
-{
- struct expression *exp;
- exp = parse_exp_in_context (&string, 0, 0, void_context_p);
- if (*string != '\000')
- error (_("Junk after end of expression."));
- return exp;
-}
-
/* A post-parser that does nothing */
void