From: Richard Kenner Date: Fri, 15 Nov 1996 17:11:24 +0000 (-0500) Subject: (decl_attributes, case A_ALIAS): Add missing parens. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d9dd5a55ae713b6411311e08921955553146eac;p=gcc.git (decl_attributes, case A_ALIAS): Add missing parens. From-SVN: r13162 --- 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)