Remove duplicated variable initialization.
authorThomas Schwinge <thomas@codesourcery.com>
Fri, 23 May 2014 11:23:49 +0000 (13:23 +0200)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Fri, 23 May 2014 11:23:49 +0000 (13:23 +0200)
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

gcc/c/ChangeLog
gcc/c/c-typeck.c
gcc/cp/ChangeLog
gcc/cp/semantics.c

index c21f68f3a5cf41a12e081518cb673d37cf3ed2cd..5bee1cadd9f1b32a45f6e7e0c6145e8079943b3b 100644 (file)
@@ -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>
index 6f4bd4afb6cf2bf4edb49d6b476351173f363937..74a5ebda5ac52b4d24f69537ed2bfa142ffbeb04 100644 (file)
@@ -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;
index b9a22f96ff40cd860b78a3201c8964f4fabada33..90ded5b0bd41443ff31b3afa4955ca93304ef0de 100644 (file)
@@ -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>
index 7e144a6734c3855ddcbee5e01030ba1de8d12412..edab3309b361d8f76088003fc47ad7eacdc47aa6 100644 (file)
@@ -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;