(mark_addressable): Fix error in last change.

From-SVN: r10862
This commit is contained in:
Richard Kenner 1995-12-25 17:11:54 -05:00
parent 3ba1236fc8
commit 36c336d189
1 changed files with 5 additions and 3 deletions

View File

@ -3294,9 +3294,11 @@ mark_addressable (exp)
{
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;
{
error ("cannot take address of bitfield `%s'",
IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (x, 1))));
return 0;
}
/* ... fall through ... */