aboutsummaryrefslogtreecommitdiff
path: root/gcc/c/c-decl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c/c-decl.cc')
-rw-r--r--gcc/c/c-decl.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/c/c-decl.cc b/gcc/c/c-decl.cc
index 33fb64d..0076725 100644
--- a/gcc/c/c-decl.cc
+++ b/gcc/c/c-decl.cc
@@ -5385,11 +5385,11 @@ c_decl_attributes (tree *node, tree attributes, int flags)
{
tree d = TREE_VALUE (a);
gcc_assert (TREE_CODE (d) == C_TOKEN_VEC);
-/* if (TREE_PUBLIC (d)
- && (VAR_P (*decl)
- || TREE_CODE (*decl) == FUNCTION_DECL)
- && c_maybe_parse_omp_decl (*decl, d))
- continue; */
+ if (TREE_PUBLIC (d)
+ && (VAR_P (*node)
+ || TREE_CODE (*node) == FUNCTION_DECL)
+ && c_maybe_parse_omp_decl (*node, d))
+ continue;
p = TREE_PUBLIC (d) ? "decl" : "directive";
}
if (p && !diagnosed)