aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr12092-1.c
blob: 8f38a4a7f46c378f52ba0c6e06aaeb7a73256dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR rtl-optimization/12092  */
/* Test case reduced by Andrew Pinski <pinskia@physics.uc.edu> */
/* { dg-do compile { target i?86-*-* } } */
/* { 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;}
}