* objc-exp.y: Add missing semi-colons.
authorTheodore A. Roth <troth@openavr.org>
Fri, 28 Mar 2003 01:40:37 +0000 (01:40 +0000)
committerTheodore A. Roth <troth@openavr.org>
Fri, 28 Mar 2003 01:40:37 +0000 (01:40 +0000)
gdb/ChangeLog
gdb/objc-exp.y

index 6ab01d8248360161d9dbe56e140d6322dbf0bd4f..75092b622e94524c9cbb5766791507f79b7fe74f 100644 (file)
@@ -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.
index 8e52fc0f12420d606b03ebe8187e84a88e781203..002600de9cb2516309a484e7413084d24244cb9d 100644 (file)
@@ -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);