diff --git a/gcc/c-parser.c b/gcc/c-parser.c index 36cad1d64..71bc56e42 100644 --- a/gcc/c-parser.c +++ b/gcc/c-parser.c @@ -7399,14 +7399,14 @@ c_parser_omp_stream_clause (c_parser *parser, OMP_CLAUSE_CHAIN (omp_clause) = list; list = omp_clause; - // TODO: TINO Check this - //if(OMP_CLAUSE_VIEW_ID (omp_clause) != NULL_TREE) - //{ - // tree new_omp_clause = build_omp_clause (clause_loc, OMP_CLAUSE_PRIVATE); - // OMP_CLAUSE_DECL (new_omp_clause) = OMP_CLAUSE_VIEW_ID (omp_clause); - // OMP_CLAUSE_CHAIN (new_omp_clause) = list; - // list = new_omp_clause; - //} + /* TODO: TINO Check this */ + /*if(OMP_CLAUSE_VIEW_ID (omp_clause) != NULL_TREE) + { + tree new_omp_clause = build_omp_clause (clause_loc, OMP_CLAUSE_PRIVATE); + OMP_CLAUSE_DECL (new_omp_clause) = OMP_CLAUSE_VIEW_ID (omp_clause); + OMP_CLAUSE_CHAIN (new_omp_clause) = list; + list = new_omp_clause; + }*/ if (c_parser_next_token_is (parser, CPP_COMMA)) c_parser_consume_token (parser); diff --git a/gcc/gimplify.c b/gcc/gimplify.c index eba44133c..bd7ce9d34 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -5744,7 +5744,7 @@ gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p, tree view = OMP_CLAUSE_VIEW_ID (c); if(view != NULL_TREE) { - //omp_add_variable (ctx, view, GOVD_LOCAL | GOVD_SEEN); + /*omp_add_variable (ctx, view, GOVD_LOCAL | GOVD_SEEN);*/ if (DECL_HAS_VALUE_EXPR_P (view)) { tree new_decl = DECL_VALUE_EXPR (view);