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: use consistent indentation for C g...



details:   https://anonhg.NetBSD.org/src/rev/002d44d05c07
branches:  trunk
changeset: 949178:002d44d05c07
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sun Jan 03 21:33:50 2021 +0000

description:
lint: use consistent indentation for C grammar

diffstat:

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

diffs (160 lines):

diff -r 1beba88bffeb -r 002d44d05c07 usr.bin/xlint/lint1/cgram.y
--- a/usr.bin/xlint/lint1/cgram.y       Sun Jan 03 21:12:03 2021 +0000
+++ b/usr.bin/xlint/lint1/cgram.y       Sun Jan 03 21:33:50 2021 +0000
@@ -1,5 +1,5 @@
 %{
-/* $NetBSD: cgram.y,v 1.129 2021/01/03 20:38:26 rillig Exp $ */
+/* $NetBSD: cgram.y,v 1.130 2021/01/03 21:33:50 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.129 2021/01/03 20:38:26 rillig Exp $");
+__RCSID("$NetBSD: cgram.y,v 1.130 2021/01/03 21:33:50 rillig Exp $");
 #endif
 
 #include <limits.h>
@@ -568,7 +568,7 @@
        | T_AT_RETURNS_TWICE
        | T_AT_PACKED {
                addpacked();
-       }
+         }
        | T_AT_PURE
        | T_AT_TUNION
        | T_AT_GNU_INLINE
@@ -577,17 +577,17 @@
            constant T_COMMA constant T_RPAREN
        | T_AT_USED {
                add_attr_used();
-       }
+         }
        | T_AT_UNUSED {
                add_attr_used();
-       }
+         }
        | T_AT_WARN_UNUSED_RESULT
        | T_AT_WEAK
        | T_AT_VISIBILITY T_LPAREN constant T_RPAREN
        | T_QUAL {
                if ($1 != CONST)
                        yyerror("Bad attribute");
-       }
+         }
        ;
 
 type_attribute_spec_list:
@@ -598,14 +598,14 @@
 type_attribute:
          T_ATTRIBUTE T_LPAREN T_LPAREN {
            attron = 1;
-       } type_attribute_spec_list {
+         } type_attribute_spec_list {
            attron = 0;
-       } T_RPAREN T_RPAREN
+         } T_RPAREN T_RPAREN
        | T_PACKED {
                addpacked();
-       }
+         }
        | T_NORETURN {
-       }
+         }
        ;
 
 type_attribute_list:
@@ -1041,7 +1041,7 @@
          }
        | type_attribute notype_direct_decl {
                $$ = $2;
-       }
+         }
        | notype_direct_decl T_LBRACK T_RBRACK {
                $$ = add_array($1, 0, 0);
          }
@@ -1074,7 +1074,7 @@
          }
        | type_attribute type_direct_decl {
                $$ = $2;
-       }
+         }
        | type_direct_decl T_LBRACK T_RBRACK {
                $$ = add_array($1, 0, 0);
          }
@@ -1453,7 +1453,7 @@
          }
        | type_attribute direct_abs_decl {
                $$ = $2;
-       }
+         }
        | direct_abs_decl T_LBRACK T_RBRACK {
                $$ = add_array($1, 0, 0);
          }
@@ -1500,12 +1500,12 @@
        | T_CASE constant T_COLON {
                case_label($2);
                ftflg = 1;
-       }
+         }
        | T_CASE constant T_ELLIPSE constant T_COLON {
                /* XXX: We don't fill all cases */
                case_label($2);
                ftflg = 1;
-       }
+         }
        | T_DEFAULT T_COLON {
                default_label();
                ftflg = 1;
@@ -1518,7 +1518,7 @@
                if (!Sflag)
                        /* declarations after statements is a C9X feature */
                        c99ism(327);
-       }
+         }
        ;
 
 comp_stmnt:
@@ -1581,14 +1581,14 @@
        | non_expr_stmnt {
                $$ = getnode();
                $$->tn_type = gettyp(VOID);
-       }
+         }
        ;
 
 expr_stmnt_list:
          expr_stmnt_val
        | expr_stmnt_list expr_stmnt_val {
                $$ = $2;
-       }
+         }
        ;
 
 selection_stmnt:
@@ -1876,9 +1876,9 @@
                blklev++;
                /* ({ }) is a GCC extension */
                gnuism(320);
-       } comp_stmnt_rbrace T_RPAREN {
+        } comp_stmnt_rbrace T_RPAREN {
                $$ = new_name_node(initsym, 0);
-       }
+        }
        | T_LPAREN comp_stmnt_lbrace expr_stmnt_list {
                blklev--;
                mblklev--;
@@ -1887,9 +1887,9 @@
                blklev++;
                /* ({ }) is a GCC extension */
                gnuism(320);
-       } comp_stmnt_rbrace T_RPAREN {
+        } comp_stmnt_rbrace T_RPAREN {
                $$ = new_name_node(initsym, 0);
-       }
+        }
        | term T_INCDEC {
                $$ = build($2 == INC ? INCAFT : DECAFT, $1, NULL);
          }



Home | Main Index | Thread Index | Old Index