diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-05-16 17:55:16 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2010-05-16 17:55:16 +0100 |
commit | 329122862022114caf79d97afe2cc89cc8c6412d (patch) | |
tree | e0f5b5187396c84005583dd5264ebf11e67f3a6c /gcc/testsuite | |
parent | a3ca07e3be6e250a8213fd95c8bb738231d3fc51 (diff) | |
download | gcc-329122862022114caf79d97afe2cc89cc8c6412d.zip gcc-329122862022114caf79d97afe2cc89cc8c6412d.tar.gz gcc-329122862022114caf79d97afe2cc89cc8c6412d.tar.bz2 |
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
Diffstat (limited to 'gcc/testsuite')
-rw-r--r-- | gcc/testsuite/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/c1x-static-assert-1.c | 41 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/c1x-static-assert-2.c | 41 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/c1x-static-assert-3.c | 28 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/c1x-static-assert-4.c | 13 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/c1x-static-assert-5.c | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/c1x-static-assert-6.c | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/c90-static-assert-1.c | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/c99-static-assert-1.c | 5 |
9 files changed, 151 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8b25528..64242be 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,11 @@ +2010-05-16 Joseph Myers <joseph@codesourcery.com> + + * 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. + 2010-05-15 Jason Merrill <jason@redhat.com> * g++.dg/eh/spec10.C: New. diff --git a/gcc/testsuite/gcc.dg/c1x-static-assert-1.c b/gcc/testsuite/gcc.dg/c1x-static-assert-1.c new file mode 100644 index 0000000..bf7aa59 --- /dev/null +++ b/gcc/testsuite/gcc.dg/c1x-static-assert-1.c @@ -0,0 +1,41 @@ +/* Test C1X static assertions. Valid assertions. */ +/* { dg-do compile } */ +/* { dg-options "-std=c1x -pedantic-errors" } */ + +_Static_assert (1, "foo"); + +enum e { E0, E1 }; + +_Static_assert (E1, L"bar"); + +_Static_assert (-1, "foo" L"bar"); + +struct s +{ + int a; + _Static_assert (3, "s"); + int b; +}; + +union u +{ + int i; + _Static_assert ((int)1.0, L""); +}; + +void +f (void) +{ + int i; + i = 1; + _Static_assert (0 + 1, "f"); + i = 2; +} + +void +g (void) +{ + int i = 0; + for (_Static_assert (1, ""); i < 10; i++) + ; +} diff --git a/gcc/testsuite/gcc.dg/c1x-static-assert-2.c b/gcc/testsuite/gcc.dg/c1x-static-assert-2.c new file mode 100644 index 0000000..9a48ca7 --- /dev/null +++ b/gcc/testsuite/gcc.dg/c1x-static-assert-2.c @@ -0,0 +1,41 @@ +/* Test C1X static assertions. Failed assertions. */ +/* { dg-do compile } */ +/* { dg-options "-std=c1x -pedantic-errors" } */ + +_Static_assert (0, "assert1"); /* { dg-error "static assertion failed: \"assert1\"" } */ + +enum e { E0, E1 }; + +_Static_assert (E0, L"assert2"); /* { dg-error "static assertion failed: \"assert2\"" } */ + +_Static_assert (-0, "ass" L"ert3"); /* { dg-error "static assertion failed: \"assert3\"" } */ + +struct s +{ + int a; + _Static_assert (0, "assert4"); /* { dg-error "static assertion failed: \"assert4\"" } */ + int b; +}; + +union u +{ + int i; + _Static_assert ((int)0.0, L"assert5"); /* { dg-error "static assertion failed: \"assert5\"" } */ +}; + +void +f (void) +{ + int i; + i = 1; + _Static_assert (0 + 0, "assert6"); /* { dg-error "static assertion failed: \"assert6\"" } */ + i = 2; +} + +void +g (void) +{ + int i = 0; + for (_Static_assert (0, "assert7"); i < 10; i++) /* { dg-error "static assertion failed: \"assert7\"" } */ + ; +} diff --git a/gcc/testsuite/gcc.dg/c1x-static-assert-3.c b/gcc/testsuite/gcc.dg/c1x-static-assert-3.c new file mode 100644 index 0000000..81b504e --- /dev/null +++ b/gcc/testsuite/gcc.dg/c1x-static-assert-3.c @@ -0,0 +1,28 @@ +/* Test C1X static assertions. Invalid assertions. */ +/* { dg-do compile } */ +/* { dg-options "-std=c1x -pedantic-errors" } */ + +_Static_assert (__INT_MAX__ * 2, "overflow"); /* { dg-warning "integer overflow in expression" } */ +/* { dg-error "overflow in constant expression" "error" { target *-*-* } 5 } */ + +_Static_assert ((void *)(__SIZE_TYPE__)16, "non-integer"); /* { dg-error "not an integer" } */ + +_Static_assert (1.0, "non-integer"); /* { dg-error "not an integer" } */ + +_Static_assert ((int)(1.0 + 1.0), "non-constant-expression"); /* { dg-error "not an integer constant expression" } */ + +int i; + +_Static_assert (i, "non-constant"); /* { dg-error "not constant" } */ + +void +f (void) +{ + int j = 0; + for (_Static_assert (sizeof (struct s { int k; }), ""); j < 10; j++) /* { dg-error "loop initial declaration" } */ + ; +} + +_Static_assert (1, 1); /* { dg-error "expected" } */ + +_Static_assert (1, ("")); /* { dg-error "expected" } */ diff --git a/gcc/testsuite/gcc.dg/c1x-static-assert-4.c b/gcc/testsuite/gcc.dg/c1x-static-assert-4.c new file mode 100644 index 0000000..ebc95f5 --- /dev/null +++ b/gcc/testsuite/gcc.dg/c1x-static-assert-4.c @@ -0,0 +1,13 @@ +/* Test C1X static assertions. More invalid assertions. */ +/* { dg-do compile } */ +/* { dg-options "-std=c1x -pedantic-errors" } */ + +/* Static assertions not valid in old-style parameter declarations + because declarations there must have declarators. */ + +void +f (i) + int i; + _Static_assert (1, ""); /* { dg-error "expected" } */ +{ +} diff --git a/gcc/testsuite/gcc.dg/c1x-static-assert-5.c b/gcc/testsuite/gcc.dg/c1x-static-assert-5.c new file mode 100644 index 0000000..d4d0821 --- /dev/null +++ b/gcc/testsuite/gcc.dg/c1x-static-assert-5.c @@ -0,0 +1,5 @@ +/* Test C1X static assertions. Non-constant-expression without -pedantic. */ +/* { dg-do compile } */ +/* { dg-options "-std=c1x" } */ + +_Static_assert ((int)(1.0 + 1.0), "non-constant-expression"); diff --git a/gcc/testsuite/gcc.dg/c1x-static-assert-6.c b/gcc/testsuite/gcc.dg/c1x-static-assert-6.c new file mode 100644 index 0000000..c544cad --- /dev/null +++ b/gcc/testsuite/gcc.dg/c1x-static-assert-6.c @@ -0,0 +1,5 @@ +/* Test C1X static assertions. Non-constant-expression with -pedantic. */ +/* { dg-do compile } */ +/* { dg-options "-std=c1x -pedantic" } */ + +_Static_assert ((int)(1.0 + 1.0), "non-constant-expression"); /* { dg-warning "not an integer constant expression" } */ diff --git a/gcc/testsuite/gcc.dg/c90-static-assert-1.c b/gcc/testsuite/gcc.dg/c90-static-assert-1.c new file mode 100644 index 0000000..d174ec9 --- /dev/null +++ b/gcc/testsuite/gcc.dg/c90-static-assert-1.c @@ -0,0 +1,5 @@ +/* Test for static assertions not in C90. */ +/* { dg-do compile } */ +/* { dg-options "-std=iso9899:1990 -pedantic-errors" } */ + +_Static_assert (1, ""); /* { dg-error "ISO C90 does not support '_Static_assert'" } */ diff --git a/gcc/testsuite/gcc.dg/c99-static-assert-1.c b/gcc/testsuite/gcc.dg/c99-static-assert-1.c new file mode 100644 index 0000000..2347736 --- /dev/null +++ b/gcc/testsuite/gcc.dg/c99-static-assert-1.c @@ -0,0 +1,5 @@ +/* Test for static assertions not in C99. */ +/* { dg-do compile } */ +/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */ + +_Static_assert (1, ""); /* { dg-error "ISO C99 does not support '_Static_assert'" } */ |