diff mbox

Fix PR45455

Message ID alpine.LNX.2.00.1008311200170.28912@zhemvz.fhfr.qr
State New
Headers show

Commit Message

Richard Biener Aug. 31, 2010, 10 a.m. UTC
Committed.

Richard.

2010-08-31  Richard Guenther  <rguenther@suse.de>

	PR testsuite/45455
	* gcc.dg/vect/vect-cond-4.c: Fix use of uninitialized variable.
diff mbox

Patch

Index: gcc/testsuite/gcc.dg/vect/vect-cond-4.c
===================================================================
--- gcc/testsuite/gcc.dg/vect/vect-cond-4.c	(revision 163668)
+++ gcc/testsuite/gcc.dg/vect/vect-cond-4.c	(working copy)
@@ -19,7 +19,7 @@  __attribute__ ((noinline)) void
 foo (int z)
 {
   int j, i, x;
-  int curr_a, flag, next_a, curr_b, next_b;
+  int curr_a, curr_b;
 
   for (j = 0; j < M; j++) 
     {
@@ -30,7 +30,7 @@  foo (int z)
       for (i = 0; i < N; i++) 
         {
           curr_a = x > c[i] ? curr_a : z;
-          curr_b = x > c[i] ? next_b : 5;
+          curr_b = x > c[i] ? curr_b : 5;
         }
 
       x_out_a[j] = curr_a;