blob: c230c84b7b168f6d19f2a99cfd0b759614c9909a [file] [log] [blame]
/* PR rtl-optimization/12092 */
/* Test case reduced by Andrew Pinski <pinskia@physics.uc.edu> */
/* { dg-do compile } */
/* { dg-require-effective-target ia32 } */
/* { dg-options "-O2 -mtune=i486 -march=pentium4 -fprefetch-loop-arrays" } */
void DecodeAC(int index,int *matrix)
{
int *mptr;
for(mptr=matrix+index;mptr<matrix+64;mptr++) {*mptr = 0;}
}