svn merge -r102224:107263 svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-3_4-branch
[official-gcc.git] / gcc / testsuite / gcc.dg / pr12092-1.c
blob8f38a4a7f46c378f52ba0c6e06aaeb7a73256dd6
1 /* PR rtl-optimization/12092 */
2 /* Test case reduced by Andrew Pinski <pinskia@physics.uc.edu> */
3 /* { dg-do compile { target i?86-*-* } } */
4 /* { dg-options "-O2 -mtune=i486 -march=pentium4 -fprefetch-loop-arrays" } */
6 void DecodeAC(int index,int *matrix)
8 int *mptr;
10 for(mptr=matrix+index;mptr<matrix+64;mptr++) {*mptr = 0;}