[COMMITTED] Remove duplicated variable initialization.

Thomas Schwinge thomas@codesourcery.com
Fri May 23 11:24:00 GMT 2014


From: tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4>

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

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@210853 138bc75d-0d04-0410-961f-82ee72b054a4
---
 gcc/c/ChangeLog    | 3 +++
 gcc/c/c-typeck.c   | 2 +-
 gcc/cp/ChangeLog   | 3 +++
 gcc/cp/semantics.c | 2 +-
 4 files changed, 8 insertions(+), 2 deletions(-)

diff --git gcc/c/ChangeLog gcc/c/ChangeLog
index c21f68f..5bee1ca 100644
--- gcc/c/ChangeLog
+++ gcc/c/ChangeLog
@@ -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>
diff --git gcc/c/c-typeck.c gcc/c/c-typeck.c
index 6f4bd4a..74a5ebd 100644
--- gcc/c/c-typeck.c
+++ gcc/c/c-typeck.c
@@ -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;
diff --git gcc/cp/ChangeLog gcc/cp/ChangeLog
index b9a22f9..90ded5b 100644
--- gcc/cp/ChangeLog
+++ gcc/cp/ChangeLog
@@ -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>
diff --git gcc/cp/semantics.c gcc/cp/semantics.c
index 7e144a6..edab330 100644
--- gcc/cp/semantics.c
+++ gcc/cp/semantics.c
@@ -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;
 
-- 
1.9.1



More information about the Gcc-patches mailing list