2003-03-27 Theodore A. Roth * gdb/objc-exp.y: Add missing semi-colons. Index: gdb/objc-exp.y =================================================================== RCS file: /cvs/src/src/gdb/objc-exp.y,v retrieving revision 1.10 diff -u -r1.10 objc-exp.y --- gdb/objc-exp.y 20 Feb 2003 00:01:06 -0000 1.10 +++ gdb/objc-exp.y 28 Mar 2003 01:22:02 -0000 @@ -247,9 +247,11 @@ /* 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 @@ 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);