From 2ae3f8ca950f9503b7e8b5d72071f73e3ae20b55 Mon Sep 17 00:00:00 2001 From: brobecke Date: Thu, 19 Sep 2002 13:59:26 +0000 Subject: [PATCH] * ada-exp.y: Add missing semicolons to end rules. Fixes a bison 1.35 warning. --- gdb/ChangeLog | 5 +++++ gdb/ada-exp.y | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8f7b8e0f95..f3cd1c4eba 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-09-19 Joel Brobecker + + * ada-exp.y: Add missing semicolons to end rules. Fixes a + bison 1.35 warning. + 2002-09-19 Richard Earnshaw * gdb_mbuild.sh: New file. diff --git a/gdb/ada-exp.y b/gdb/ada-exp.y index 2e34e019cd..70a4b584f1 100644 --- a/gdb/ada-exp.y +++ b/gdb/ada-exp.y @@ -256,6 +256,7 @@ simple_exp : type '\'' save_qualifier { type_qualifier = $1; } '(' exp ')' ; save_qualifier : { $$ = type_qualifier; } + ; simple_exp : simple_exp '(' exp DOTDOT exp ')' @@ -532,7 +533,7 @@ exp : CHARLIT (convert_char_literal (type_qualifier, $1.val)); write_exp_elt_opcode (OP_LONG); } - + ; exp : FLOAT { write_exp_elt_opcode (OP_DOUBLE); @@ -548,6 +549,7 @@ exp : NULL_PTR write_exp_elt_longcst ((LONGEST)(0)); write_exp_elt_opcode (OP_LONG); } + ; exp : STRING { /* Ada strings are converted into array constants -- 2.11.0