This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[gomp4,bootstrap] Remove unused variable in lower_reduction_clauses


Committed this patch to fix bootstrap.

Thanks,
- Tom
Remove unused variable in lower_reduction_clauses

2015-06-16  Tom de Vries  <tom@codesourcery.com>

	* omp-low.c (lower_reduction_clauses): Remove unused variable call.
---
 gcc/omp-low.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/omp-low.c b/gcc/omp-low.c
index a3dab12..0300ed7 100644
--- a/gcc/omp-low.c
+++ b/gcc/omp-low.c
@@ -5246,7 +5246,7 @@ lower_reduction_clauses (tree clauses, gimple_seq *stmt_seqp, omp_context *ctx)
 	     lower_omp_for (for openacc), the values of array will be
 	     combined.  */
 
-	  tree t, array, call, nthreads, ptr;
+	  tree t, array, nthreads, ptr;
 	  tree type = get_base_type (var);
 	  omp_context *octx;
 	  gimple stmt;
-- 
1.9.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]