summaryrefslogtreecommitdiff
path: root/gdb/valops.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-06-17 20:24:21 +0000
committerTom Tromey <tromey@redhat.com>2011-06-17 20:24:21 +0000
commit5c9cffe047056e7934e1f40779fffb8d525576d2 (patch)
tree8d489846969276009a2668a3c46031a5251cefec /gdb/valops.c
parentbc9f981a27f494a0ccd1dd0e40fd21ed840c7d1f (diff)
downloadgdb-5c9cffe047056e7934e1f40779fffb8d525576d2.tar.gz
* valops.c (value_of_local): Complain if NAME is NULL.
* std-operator.def (OP_OBJC_SELF): Remove. * parse.c (operator_length_standard) <OP_OBJC_SELF>: Remove. * objc-exp.y (name_not_typename): Use OP_THIS. * expprint.c (print_subexp_standard) <OP_THIS>: Print language's name for "this". <OP_OBJC_SELF>: Remove. * eval.c (evaluate_subexp_standard) <OP_OBJC_SELF>: Remove.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r--gdb/valops.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/valops.c b/gdb/valops.c
index 36761039c21..6129bfef4c0 100644
--- a/gdb/valops.c
+++ b/gdb/valops.c
@@ -3608,6 +3608,13 @@ value_of_local (const char *name, int complain)
struct value * ret;
struct frame_info *frame;
+ if (!name)
+ {
+ if (complain)
+ error (_("no `this' in current language"));
+ return 0;
+ }
+
if (complain)
frame = get_selected_frame (_("no frame selected"));
else