diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4f6b931c4f9..286eb573bca 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2010-08-31 Richard Guenther + + PR testsuite/45455 + * gcc.dg/vect/vect-cond-4.c: Fix use of uninitialized variable. + 2010-08-31 Bingfeng Mei * gcc.dg/vect/pr43430-1.c: Requires vect_condition target. diff --git a/gcc/testsuite/gcc.dg/vect/vect-cond-4.c b/gcc/testsuite/gcc.dg/vect/vect-cond-4.c index c3a1585839c..a46dfc58c2d 100644 --- a/gcc/testsuite/gcc.dg/vect/vect-cond-4.c +++ b/gcc/testsuite/gcc.dg/vect/vect-cond-4.c @@ -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;