Commit f3316c6d by Thomas Schwinge Committed by Thomas Schwinge

Remove duplicated variable initialization.

	gcc/c/
	* c-typeck.c (c_finish_omp_clauses): Remove duplicated variable
	initialization.
	gcc/cp/
	* semantics.c (finish_omp_clauses): Remove duplicated variable
	initialization.

From-SVN: r210853
parent a5a5434f
2014-05-23 Thomas Schwinge <thomas@codesourcery.com> 2014-05-23 Thomas Schwinge <thomas@codesourcery.com>
* c-typeck.c (c_finish_omp_clauses): Remove duplicated variable
initialization.
* c-parser.c (c_parser_omp_target): Return bool values. * c-parser.c (c_parser_omp_target): Return bool values.
2014-05-22 Thomas Schwinge <thomas@codesourcery.com> 2014-05-22 Thomas Schwinge <thomas@codesourcery.com>
......
...@@ -11762,7 +11762,7 @@ c_finish_omp_clauses (tree clauses) ...@@ -11762,7 +11762,7 @@ c_finish_omp_clauses (tree clauses)
{ {
bitmap_head generic_head, firstprivate_head, lastprivate_head; bitmap_head generic_head, firstprivate_head, lastprivate_head;
bitmap_head aligned_head; bitmap_head aligned_head;
tree c, t, *pc = &clauses; tree c, t, *pc;
bool branch_seen = false; bool branch_seen = false;
bool copyprivate_seen = false; bool copyprivate_seen = false;
tree *nowait_clause = NULL; tree *nowait_clause = NULL;
......
2014-05-23 Thomas Schwinge <thomas@codesourcery.com> 2014-05-23 Thomas Schwinge <thomas@codesourcery.com>
* semantics.c (finish_omp_clauses): Remove duplicated variable
initialization.
* parser.c (cp_parser_omp_target): Return bool values. * parser.c (cp_parser_omp_target): Return bool values.
2014-05-22 Paolo Carlini <paolo.carlini@oracle.com> 2014-05-22 Paolo Carlini <paolo.carlini@oracle.com>
......
...@@ -5222,7 +5222,7 @@ finish_omp_clauses (tree clauses) ...@@ -5222,7 +5222,7 @@ finish_omp_clauses (tree clauses)
{ {
bitmap_head generic_head, firstprivate_head, lastprivate_head; bitmap_head generic_head, firstprivate_head, lastprivate_head;
bitmap_head aligned_head; bitmap_head aligned_head;
tree c, t, *pc = &clauses; tree c, t, *pc;
bool branch_seen = false; bool branch_seen = false;
bool copyprivate_seen = false; bool copyprivate_seen = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment