OSDN Git Service

* ada-exp.y: Add missing semicolons to end rules. Fixes a
authorbrobecke <brobecke>
Thu, 19 Sep 2002 13:59:26 +0000 (13:59 +0000)
committerbrobecke <brobecke>
Thu, 19 Sep 2002 13:59:26 +0000 (13:59 +0000)
       bison 1.35 warning.

gdb/ChangeLog
gdb/ada-exp.y

index 8f7b8e0..f3cd1c4 100644 (file)
@@ -1,3 +1,8 @@
+2002-09-19  Joel Brobecker  <brobecker@gnat.com>
+
+       * ada-exp.y: Add missing semicolons to end rules. Fixes a
+       bison 1.35 warning.
+
 2002-09-19  Richard Earnshaw  <rearnsha@arm.com>
 
        * gdb_mbuild.sh: New file.
index 2e34e01..70a4b58 100644 (file)
@@ -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