mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 12:39:59 +00:00
* objc-exp.y: Add missing semi-colons.
This commit is contained in:
parent
82a4a0fe33
commit
5edc9ca693
@ -1,3 +1,7 @@
|
||||
2003-03-27 Theodore A. Roth <troth@openavr.org>
|
||||
|
||||
* objc-exp.y: Add missing semi-colons.
|
||||
|
||||
2003-03-27 Andrew Cagney <cagney@redhat.com>
|
||||
|
||||
* regcache.c (write_sp): Delete function and references.
|
||||
|
@ -247,9 +247,11 @@ exp1 : exp
|
||||
/* Expressions, not including the comma operator. */
|
||||
exp : '*' exp %prec UNARY
|
||||
{ write_exp_elt_opcode (UNOP_IND); }
|
||||
;
|
||||
|
||||
exp : '&' exp %prec UNARY
|
||||
{ write_exp_elt_opcode (UNOP_ADDR); }
|
||||
;
|
||||
|
||||
exp : '-' exp %prec UNARY
|
||||
{ write_exp_elt_opcode (UNOP_NEG); }
|
||||
@ -569,6 +571,7 @@ exp : SELECTOR
|
||||
write_exp_elt_opcode (OP_OBJC_SELECTOR);
|
||||
write_exp_string ($1);
|
||||
write_exp_elt_opcode (OP_OBJC_SELECTOR); }
|
||||
;
|
||||
|
||||
exp : SIZEOF '(' type ')' %prec UNARY
|
||||
{ write_exp_elt_opcode (OP_LONG);
|
||||
|
Loading…
Reference in New Issue
Block a user