mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-24 09:19:12 +08:00
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
This commit is contained in:
parent
a5a5434f7b
commit
f3316c6dce
@ -1,5 +1,8 @@
|
||||
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.
|
||||
|
||||
2014-05-22 Thomas Schwinge <thomas@codesourcery.com>
|
||||
|
@ -11762,7 +11762,7 @@ c_finish_omp_clauses (tree clauses)
|
||||
{
|
||||
bitmap_head generic_head, firstprivate_head, lastprivate_head;
|
||||
bitmap_head aligned_head;
|
||||
tree c, t, *pc = &clauses;
|
||||
tree c, t, *pc;
|
||||
bool branch_seen = false;
|
||||
bool copyprivate_seen = false;
|
||||
tree *nowait_clause = NULL;
|
||||
|
@ -1,5 +1,8 @@
|
||||
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.
|
||||
|
||||
2014-05-22 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
@ -5222,7 +5222,7 @@ finish_omp_clauses (tree clauses)
|
||||
{
|
||||
bitmap_head generic_head, firstprivate_head, lastprivate_head;
|
||||
bitmap_head aligned_head;
|
||||
tree c, t, *pc = &clauses;
|
||||
tree c, t, *pc;
|
||||
bool branch_seen = false;
|
||||
bool copyprivate_seen = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user