re PR c/62024 (__atomic_always_lock_free is not a constant expression)

PR c/62024
	* c-parser.c (c_parser_static_assert_declaration_no_semi): Strip no-op
	conversions.

	* g++.dg/cpp0x/pr62024.C: New test.
	* gcc.dg/pr62024.c: New test.

From-SVN: r214871
This commit is contained in:
Marek Polacek 2014-09-03 11:16:29 +00:00 committed by Marek Polacek
parent d40f3c4030
commit 8d95fe25c5
5 changed files with 29 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2014-09-03 Marek Polacek <polacek@redhat.com>
PR c/62024
* c-parser.c (c_parser_static_assert_declaration_no_semi): Strip no-op
conversions.
2014-09-02 Jakub Jelinek <jakub@redhat.com>
Balaji V. Iyer <balaji.v.iyer@intel.com>
Igor Zamyatin <igor.zamyatin@intel.com>

View File

@ -2060,6 +2060,8 @@ c_parser_static_assert_declaration_no_semi (c_parser *parser)
if (TREE_CODE (value) != INTEGER_CST)
{
value = c_fully_fold (value, false, NULL);
/* Strip no-op conversions. */
STRIP_TYPE_NOPS (value);
if (TREE_CODE (value) == INTEGER_CST)
pedwarn (value_loc, OPT_Wpedantic, "expression in static assertion "
"is not an integer constant expression");

View File

@ -1,3 +1,9 @@
2014-09-03 Marek Polacek <polacek@redhat.com>
PR c/62024
* g++.dg/cpp0x/pr62024.C: New test.
* gcc.dg/pr62024.c: New test.
2014-09-03 Ilya Tocar <ilya.tocar@intel.com>
* gcc.target/i386/adx-addcarryx32-1.c: Test addcarry, subborrow.

View File

@ -0,0 +1,7 @@
// PR c/62024
// { dg-do compile { target c++11 } }
// { dg-require-effective-target sync_char_short }
int *p;
static_assert (__atomic_always_lock_free (1, p), "");
static_assert (__atomic_always_lock_free (1, 0), "");

View File

@ -0,0 +1,8 @@
/* PR c/62024 */
/* { dg-do compile } */
/* { dg-options "-std=gnu11 -Wpedantic" } */
/* { dg-require-effective-target sync_char_short } */
int *p;
_Static_assert (__atomic_always_lock_free (1, p), ""); /* { dg-warning "is not an integer constant" } */
_Static_assert (__atomic_always_lock_free (1, 0), ""); /* { dg-warning "is not an integer constant" } */