From 5d9dd5a55ae713b6411311e08921955553146eac Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 15 Nov 1996 12:11:24 -0500 Subject: [PATCH] (decl_attributes, case A_ALIAS): Add missing parens. From-SVN: r13162 --- gcc/c-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-common.c b/gcc/c-common.c index 9a9c6759a43..8248c076d01 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -733,7 +733,7 @@ decl_attributes (node, attributes, prefix_attributes) case A_ALIAS: if ((TREE_CODE (decl) == FUNCTION_DECL && DECL_INITIAL (decl)) - || TREE_CODE (decl) != FUNCTION_DECL && ! DECL_EXTERNAL (decl)) + || (TREE_CODE (decl) != FUNCTION_DECL && ! DECL_EXTERNAL (decl))) error_with_decl (decl, "`%s' defined both normally and as an alias"); else if (decl_function_context (decl) == 0) -- 2.30.2