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 Extra commit to fix the actual wrong com...
details: https://anonhg.NetBSD.org/src/rev/893673e0b471
branches: trunk
changeset: 986285:893673e0b471
user: christos <christos%NetBSD.org@localhost>
date: Fri Sep 17 21:06:04 2021 +0000
description:
Extra commit to fix the actual wrong comment before:
Add _Static_assert grammar and keyword
diffstat:
usr.bin/xlint/lint1/cgram.y | 8 ++++----
usr.bin/xlint/lint1/lex.c | 6 +++---
2 files changed, 7 insertions(+), 7 deletions(-)
diffs (57 lines):
diff -r 2f6182e3366c -r 893673e0b471 usr.bin/xlint/lint1/cgram.y
--- a/usr.bin/xlint/lint1/cgram.y Fri Sep 17 20:17:30 2021 +0000
+++ b/usr.bin/xlint/lint1/cgram.y Fri Sep 17 21:06:04 2021 +0000
@@ -1,5 +1,5 @@
%{
-/* $NetBSD: cgram.y,v 1.365 2021/09/17 20:17:30 christos Exp $ */
+/* $NetBSD: cgram.y,v 1.366 2021/09/17 21:06:04 christos 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.365 2021/09/17 20:17:30 christos Exp $");
+__RCSID("$NetBSD: cgram.y,v 1.366 2021/09/17 21:06:04 christos Exp $");
#endif
#include <limits.h>
@@ -1571,8 +1571,8 @@
;
static_assert_declaration:
- T_STATIC_ASSERT T_LPAREN constant_expr T_COMMA T_STRING T_RPAREN T_SEMI
- | T_STATIC_ASSERT T_LPAREN constant_expr T_RPAREN T_SEMI
+ T_STATIC_ASSERT T_LPAREN constant_expr T_COMMA T_STRING T_RPAREN T_SEMI /* C11 */
+ | T_STATIC_ASSERT T_LPAREN constant_expr T_RPAREN T_SEMI /* C23 */
;
range:
diff -r 2f6182e3366c -r 893673e0b471 usr.bin/xlint/lint1/lex.c
--- a/usr.bin/xlint/lint1/lex.c Fri Sep 17 20:17:30 2021 +0000
+++ b/usr.bin/xlint/lint1/lex.c Fri Sep 17 21:06:04 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: lex.c,v 1.82 2021/09/17 20:17:30 christos Exp $ */
+/* $NetBSD: lex.c,v 1.83 2021/09/17 21:06:04 christos Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved.
@@ -38,7 +38,7 @@
#include <sys/cdefs.h>
#if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: lex.c,v 1.82 2021/09/17 20:17:30 christos Exp $");
+__RCSID("$NetBSD: lex.c,v 1.83 2021/09/17 21:06:04 christos Exp $");
#endif
#include <ctype.h>
@@ -217,7 +217,7 @@
kwdef_type( "signed", SIGNED, 1,0,0,0,3),
kwdef_keyword( "sizeof", T_SIZEOF),
kwdef_sclass( "static", STATIC, 0,0,0,0,1),
- kwdef_keyword( "_Static_assert",T_STATIC_ASSERT),
+ kwdef_keyword( "_Static_assert", T_STATIC_ASSERT),
kwdef_gcc_attr( "strfmon", T_AT_FORMAT_STRFMON),
kwdef_gcc_attr( "strftime", T_AT_FORMAT_STRFTIME),
kwdef_gcc_attr( "string", T_AT_STRING),
Home |
Main Index |
Thread Index |
Old Index