diff options
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 7688dd2..895ce36 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -3888,7 +3888,7 @@ finish_decl (decl, init, asmspec_tree) declaration into a file scope one. This can be detected by TREE_ASM_WRITTEN being set. */ (DECL_INITIAL (decl) != 0 - || DECL_CONTEXT (decl) != 0 && ! TREE_ASM_WRITTEN (decl)) + || (DECL_CONTEXT (decl) != 0 && ! TREE_ASM_WRITTEN (decl))) : /* An automatic variable with an incomplete type is an error. */ |