forked from Imagelibrary/binutils-gdb
* 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.
This commit is contained in:
@@ -499,14 +499,11 @@ print_subexp_standard (struct expression *exp, int *pos,
|
||||
|
||||
case OP_THIS:
|
||||
++(*pos);
|
||||
fputs_filtered ("this", stream);
|
||||
return;
|
||||
|
||||
/* Objective-C ops */
|
||||
|
||||
case OP_OBJC_SELF:
|
||||
++(*pos);
|
||||
fputs_filtered ("self", stream); /* The ObjC equivalent of "this". */
|
||||
if (exp->language_defn->la_name_of_this)
|
||||
fputs_filtered (exp->language_defn->la_name_of_this, stream);
|
||||
else
|
||||
fprintf_filtered (stream, _("<language %s has no 'this'>"),
|
||||
exp->language_defn->la_name);
|
||||
return;
|
||||
|
||||
/* Modula-2 ops */
|
||||
|
||||
Reference in New Issue
Block a user