mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 14:41:14 +08:00
(mark_addressable, case COMPONENT_REF): Give error if taking address
of a bit field. From-SVN: r10858
This commit is contained in:
parent
64d60f91a6
commit
1598f4da78
@ -3292,8 +3292,15 @@ mark_addressable (exp)
|
||||
while (1)
|
||||
switch (TREE_CODE (x))
|
||||
{
|
||||
case ADDR_EXPR:
|
||||
case COMPONENT_REF:
|
||||
if (DECL_C_BIT_FIELD (TREE_OPERAND (x, 1)))
|
||||
error ("cannot take address of bitfield `%s'",
|
||||
IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (x, 1))));
|
||||
return 0;
|
||||
|
||||
/* ... fall through ... */
|
||||
|
||||
case ADDR_EXPR:
|
||||
case ARRAY_REF:
|
||||
case REALPART_EXPR:
|
||||
case IMAGPART_EXPR:
|
||||
|
Loading…
x
Reference in New Issue
Block a user