diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-11-15 12:11:24 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-11-15 12:11:24 -0500 |
commit | 5d9dd5a55ae713b6411311e08921955553146eac (patch) | |
tree | a7986e0e9a666a08584099b6bd5b9c0623353a00 /gcc/c-common.c | |
parent | 4e644c93e06fd46a54895c0479075d9f7fa4a51c (diff) | |
download | gcc-5d9dd5a55ae713b6411311e08921955553146eac.zip gcc-5d9dd5a55ae713b6411311e08921955553146eac.tar.gz gcc-5d9dd5a55ae713b6411311e08921955553146eac.tar.bz2 |
(decl_attributes, case A_ALIAS): Add missing parens.
From-SVN: r13162
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 9a9c675..8248c07 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) |