Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/xlint/lint1 lint: clean up grammar



details:   https://anonhg.NetBSD.org/src/rev/ba47b37fa535
branches:  trunk
changeset: 984444:ba47b37fa535
user:      rillig <rillig%NetBSD.org@localhost>
date:      Thu Jul 08 03:55:54 2021 +0000

description:
lint: clean up grammar

enum_decl_lbrace was only used once and was small enough to be inlined.

Renamed expr_statement and added block_item_list_opt to match the
wording from C99.

Added references to C99.

No functional change.

diffstat:

 usr.bin/xlint/lint1/cgram.y |  45 +++++++++++++++++++++++----------------------
 1 files changed, 23 insertions(+), 22 deletions(-)

diffs (158 lines):

diff -r 04194056fda8 -r ba47b37fa535 usr.bin/xlint/lint1/cgram.y
--- a/usr.bin/xlint/lint1/cgram.y       Thu Jul 08 03:35:07 2021 +0000
+++ b/usr.bin/xlint/lint1/cgram.y       Thu Jul 08 03:55:54 2021 +0000
@@ -1,5 +1,5 @@
 %{
-/* $NetBSD: cgram.y,v 1.269 2021/07/08 03:35:07 rillig Exp $ */
+/* $NetBSD: cgram.y,v 1.270 2021/07/08 03:55:54 rillig Exp $ */
 
 /*
  * Copyright (c) 1996 Christopher G. Demetriou.  All Rights Reserved.
@@ -35,7 +35,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: cgram.y,v 1.269 2021/07/08 03:35:07 rillig Exp $");
+__RCSID("$NetBSD: cgram.y,v 1.270 2021/07/08 03:55:54 rillig Exp $");
 #endif
 
 #include <limits.h>
@@ -851,15 +851,11 @@
        ;
 
 enum_declaration:
-         enum_decl_lbrace enumerator_list enumerator_list_comma_opt T_RBRACE {
-               $$ = $2;
-         }
-       ;
-
-enum_decl_lbrace:
          T_LBRACE {
                symtyp = FVFT;
                enumval = 0;
+         } enumerator_list enumerator_list_comma_opt T_RBRACE {
+               $$ = $2;
          }
        ;
 
@@ -1413,7 +1409,7 @@
        ;
 
 statement:                     /* C99 6.8 */
-         expr_statement
+         expression_statement
        | non_expr_statement
        ;
 
@@ -1442,8 +1438,8 @@
        ;
 
 compound_statement:            /* C99 6.8.2 */
-         compound_statement_lbrace compound_statement_rbrace
-       | compound_statement_lbrace block_item_list compound_statement_rbrace
+         compound_statement_lbrace block_item_list_opt
+           compound_statement_rbrace
        ;
 
 compound_statement_lbrace:
@@ -1464,6 +1460,11 @@
          }
        ;
 
+block_item_list_opt:           /* C99 6.8.2 */
+         /* empty */
+       | block_item_list
+       ;
+
 block_item_list:
          block_item
        | block_item_list block_item {
@@ -1485,7 +1486,7 @@
          }
        ;
 
-expr_statement:
+expression_statement:          /* C99 6.8.3 */
          expr T_SEMI {
                expr($1, false, false, false, false);
                seen_fallthrough = false;
@@ -1522,19 +1523,19 @@
          }
        ;
 
-if_without_else:
+if_without_else:               /* see C99 6.8.4 */
          if_expr statement
        | if_expr error
        ;
 
-if_expr:
+if_expr:                       /* see C99 6.8.4 */
          T_IF T_LPAREN expr T_RPAREN {
                if1($3);
                clear_warning_flags();
          }
        ;
 
-switch_expr:
+switch_expr:                   /* see C99 6.8.4 */
          T_SWITCH T_LPAREN expr T_RPAREN {
                switch1($3);
                clear_warning_flags();
@@ -1578,33 +1579,33 @@
          }
        ;
 
-while_expr:
+while_expr:                    /* see C99 6.8.5 */
          T_WHILE T_LPAREN expr T_RPAREN {
                while1($3);
                clear_warning_flags();
          }
        ;
 
-do:
+do:                            /* see C99 6.8.5 */
          T_DO {
                do1();
          }
        ;
 
-do_while_expr:
+do_while_expr:                 /* see C99 6.8.5 */
          T_WHILE T_LPAREN expr T_RPAREN T_SEMI {
                $$ = $3;
          }
        ;
 
-for_start:
+for_start:                     /* see C99 6.8.5 */
          T_FOR T_LPAREN {
                begin_declaration_level(AUTO);
                block_level++;
          }
        ;
 
-for_exprs:
+for_exprs:                     /* see C99 6.8.5 */
          for_start declaration_specifiers deftyp notype_init_decls T_SEMI
            expr_opt T_SEMI expr_opt T_RPAREN {
                /* variable declaration in for loop */
@@ -1682,7 +1683,7 @@
        | expr
        ;
 
-expr:
+expr:                          /* C99 6.5 */
          expr T_ASTERISK expr {
                $$ = build(MULT, $1, $3);
          }
@@ -1736,7 +1737,7 @@
          expr %prec T_ASSIGN
        ;
 
-term:
+term:                          /* see C99 6.5.1 */
          T_NAME {
                /* XXX really necessary? */
                if (yychar < 0)



Home | Main Index | Thread Index | Old Index