diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index d8e4ff1e316..4235748a582 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -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 ... */