diff options
Diffstat (limited to 'gcc/c/c-decl.c')
-rw-r--r-- | gcc/c/c-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c/c-decl.c b/gcc/c/c-decl.c index 4a36c54..7ade2d6 100644 --- a/gcc/c/c-decl.c +++ b/gcc/c/c-decl.c @@ -5813,7 +5813,7 @@ grokdeclarator (const struct c_declarator *declarator, of typedefs or typeof) must be detected here. If the qualifier is introduced later, any appearance of applying it to an array is actually applying it to an element of that array. */ - if (atomicp && TREE_CODE (type) == ARRAY_TYPE) + if (declspecs->atomic_p && TREE_CODE (type) == ARRAY_TYPE) error_at (loc, "%<_Atomic%>-qualified array type"); /* Warn about storage classes that are invalid for certain |