Commit 8cdf0bd0 by Ira Rosen Committed by Ira Rosen

re PR target/36510 (gcc.dg/vect/costmodel/ppc failures)

	PR target/36510
	* gcc.dg/vect/costmodel/ppc/costmodel-vect-31d.c: Change the loop
	bound.
	* gcc.dg/vect/costmodel/ppc/costmodel-vect-76c.c,
	gcc.dg/vect/costmodel/ppc/costmodel-vect-68d.c: Likewise.

From-SVN: r137140
parent f3d14ed5
2008-06-26 Ira Rosen <irar@il.ibm.com>
PR target/36510
* gcc.dg/vect/costmodel/ppc/costmodel-vect-31d.c: Change the loop
bound.
* gcc.dg/vect/costmodel/ppc/costmodel-vect-76c.c,
gcc.dg/vect/costmodel/ppc/costmodel-vect-68d.c: Likewise.
2008-06-25 Paul Thomas <pault@gcc.gnu.org>
PR fortran/36526
......
......@@ -3,7 +3,7 @@
#include <stdarg.h>
#include "../../tree-vect.h"
#define N 32
#define N 5
struct t{
int k[N];
......@@ -24,13 +24,13 @@ int main1 ()
struct s tmp;
/* unaligned */
for (i = 0; i < N/2; i++)
for (i = 0; i < N; i++)
{
tmp.e.k[i] = 8;
}
/* check results: */
for (i = 0; i <N/2; i++)
for (i = 0; i < N; i++)
{
if (tmp.e.k[i] != 8)
abort ();
......
......@@ -3,7 +3,7 @@
#include <stdarg.h>
#include "../../tree-vect.h"
#define N 20
#define N 11
struct s{
int m;
......
......@@ -3,7 +3,7 @@
#include <stdarg.h>
#include "../../tree-vect.h"
#define N 8
#define N 32
#define OFF 4
/* Check handling of accesses for which the "initial condition" -
......
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