From 36c336d189804fe8fcb2980e8e52c4d0ca3ae39f Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 25 Dec 1995 17:11:54 -0500 Subject: [PATCH] (mark_addressable): Fix error in last change. From-SVN: r10862 --- gcc/c-typeck.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 ... */ -- 2.30.2