summaryrefslogtreecommitdiff
path: root/gdb/m2-exp.y
diff options
context:
space:
mode:
authorTheodore A. Roth <troth@openavr.org>2002-11-06 22:48:25 +0000
committerTheodore A. Roth <troth@openavr.org>2002-11-06 22:48:25 +0000
commit7af890d6ee4dfa4ba417437224c6069759fa6122 (patch)
treec8a8423197b525366a435f9af0e9aa8f694ed42e /gdb/m2-exp.y
parent796800857ccba71d38f72bdb5e37e05f9ca9d820 (diff)
downloadgdb-7af890d6ee4dfa4ba417437224c6069759fa6122.tar.gz
* c-exp.y: Add missing semi-colons.
* f-exp.y: Add missing semi-colons. * m2-exp.y: Add missing semi-colons. * p-exp.y: Add missing semi-colons. Add empty action to start rule to avoid a type clash error when building with bison >= 1.50.
Diffstat (limited to 'gdb/m2-exp.y')
-rw-r--r--gdb/m2-exp.y2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/m2-exp.y b/gdb/m2-exp.y
index e291d62b1cb..3fb46851c84 100644
--- a/gdb/m2-exp.y
+++ b/gdb/m2-exp.y
@@ -216,6 +216,7 @@ type_exp: type
exp : exp '^' %prec UNARY
{ write_exp_elt_opcode (UNOP_IND); }
+ ;
exp : '-'
{ number_sign = -1; }
@@ -330,6 +331,7 @@ exp : INCL '(' exp ',' exp ')'
exp : EXCL '(' exp ',' exp ')'
{ error("Sets are not implemented.");}
+ ;
set : '{' arglist '}'
{ error("Sets are not implemented.");}