From: Richard Kenner Date: Mon, 25 Dec 1995 22:11:54 +0000 (-0500) Subject: (mark_addressable): Fix error in last change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=36c336d189804fe8fcb2980e8e52c4d0ca3ae39f;p=gcc.git (mark_addressable): Fix error in last change. From-SVN: r10862 --- 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 ... */