c-common.c (c_common_reswords): Add _Static_assert for C.
authorJoseph Myers <joseph@codesourcery.com>
Sun, 16 May 2010 16:55:16 +0000 (17:55 +0100)
committerJoseph Myers <jsm28@gcc.gnu.org>
Sun, 16 May 2010 16:55:16 +0000 (17:55 +0100)
commit329122862022114caf79d97afe2cc89cc8c6412d
treee0f5b5187396c84005583dd5264ebf11e67f3a6c
parenta3ca07e3be6e250a8213fd95c8bb738231d3fc51
c-common.c (c_common_reswords): Add _Static_assert for C.

* c-common.c (c_common_reswords): Add _Static_assert for C.
* c-parser.c (c_token_starts_declaration,
c_parser_next_token_starts_declaration,
c_parser_static_assert_declaration_no_semi,
c_parser_static_assert_declaration): New.
(c_parser_declaration_or_fndef): Add parameter static_assert_ok.
Handle static assertions if static_assert_ok.
(c_parser_external_declaration, c_parser_declaration_or_fndef,
c_parser_compound_statement_nostart, c_parser_label,
c_parser_for_statement, c_parser_objc_methodprotolist,
c_parser_omp_for_loop): All callers of
c_parser_declaration_or_fndef changed.
(c_parser_struct_declaration): Handle static assertions.
(c_parser_compound_statement_nostart): Use
c_parser_next_token_starts_declaration and
c_token_starts_declaration to detect start of declarations.
(c_parser_label, c_parser_for_statement, c_parser_omp_for_loop):
Likewise.

testsuite:
* gcc.dg/c1x-static-assert-1.c, gcc.dg/c1x-static-assert-2.c,
gcc.dg/c1x-static-assert-3.c, gcc.dg/c1x-static-assert-4.c,
gcc.dg/c1x-static-assert-5.c, gcc.dg/c1x-static-assert-6.c,
gcc.dg/c90-static-assert-1.c, gcc.dg/c99-static-assert-1.c: New
tests.

From-SVN: r159459
12 files changed:
gcc/ChangeLog
gcc/c-common.c
gcc/c-parser.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/c1x-static-assert-1.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/c1x-static-assert-2.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/c1x-static-assert-3.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/c1x-static-assert-4.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/c1x-static-assert-5.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/c1x-static-assert-6.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/c90-static-assert-1.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/c99-static-assert-1.c [new file with mode: 0644]