Commit 521f3e99 by Sebastian Pop Committed by Sebastian Pop

pr38409.c: Fixed commit problem.

	* gcc.dg/graphite/pr38409.c: Fixed commit problem.

From-SVN: r142741
parent 98c62941
2008-12-13 Sebastian Pop <sebastian.pop@amd.com>
* gcc.dg/graphite/pr38409.c: Fixed commit problem.
2008-12-13 Uros Bizjak <ubizjak@gmail.com>
* gcc.target/i386/sse-12.c: Include x86intrin.h.
......
......@@ -22,27 +22,3 @@ Chv_copyEntriesToVector ( input *chv,double *dvec)
}
return(mm) ;
}
/* { dg-options "-O2 -floop-block" } */
typedef struct test input ;
struct test
{
int type ;
int symflag ;
};
Chv_copyEntriesToVector ( input *chv,double *dvec)
{
double *entries ;
int mm, nent;
int first, i, k , stride ;
if ( ((chv)->type == 1) )
{
for ( i = 0 ; i < 10 ; i++)
{
dvec[2*mm] = entries[2*k] ;
k += stride ;
stride -= 2 ;
}
}
return(mm) ;
}
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