pr38409.c: Fixed commit problem.

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

From-SVN: r142741
This commit is contained in:
Sebastian Pop 2008-12-13 19:53:29 +00:00 committed by Sebastian Pop
parent 98c62941ac
commit 521f3e9930
2 changed files with 4 additions and 24 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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) ;
}