Commit 1c8cd54d by Dorit Nuzman

vect-dv-2.c: Change loop bound and restore original functionality of the testcase.

        * gcc.dg/vect/vect-dv-2.c: Change loop bound and restore original
        functionality of the testcase.

From-SVN: r104481
parent d52225be
......@@ -49,7 +49,7 @@
* tree-stdarg.c (execute_optimize_stdarg): Call
calculate_dominance_info.
2005-09-18 Daniel Berlin <dberlin@dberlin.org>
2005-09-20 Daniel Berlin <dberlin@dberlin.org>
* tree-data-ref.c (get_number_of_iters_for_loop): New function.
(analyze_siv_subscript_cst_affine): Add weak SIV test.
......
2005-09-21 Dorit Nuzman <dorit@il.ibm.com>
* gcc.dg/vect/vect-dv-2.c: Change loop bound and restore original
functionality of the testcase.
2005-09-20 Richard Henderson <rth@redhat.com>
* gcc.dg/vect/vect-22.c: Require vect_float.
......@@ -20,6 +25,11 @@
PR tree-optimization/23929
* gcc.c-torture/compile/pr23929.c: New test.
2005-09-20 Daniel Berlin <dberlin@dberlin.org>
* gcc.dg/vect/vect-dv-2.c: Expect same alignment message only
for one loop.
2005-09-20 Steve Ellcey <sje@cup.hp.com>
PR testsuite/23186
......@@ -29,15 +29,15 @@ int main ()
}
/* Vectorizable */
for (i = 0; i < 16; i++)
for (i = 0; i < N-20; i++)
{
A[i] = A[i+20];
}
/* check results: */
for (i = 0; i < 16; i++)
for (i = 0; i < N-20; i++)
{
if (A[i] != A[i+20])
if (A[i] != D[i+20])
abort ();
}
......@@ -73,5 +73,5 @@ int main ()
/* { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" } } */
/* { dg-final { scan-tree-dump-times "accesses have the same alignment." 1 "vect" } } */
/* { dg-final { scan-tree-dump-times "accesses have the same alignment." 2 "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment