From d94c652edfc1767851841a42bd360227bd09976d Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Mon, 27 Jun 2011 15:32:11 +0200 Subject: [PATCH] Replace C++ comments by C comments. --- gcc/c-parser.c | 16 ++++++++-------- gcc/gimplify.c | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) 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);