]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
This commit was manufactured by cvs2svn to create branch
authorNo Author <no-author@gcc.gnu.org>
Sun, 2 Jan 2005 16:46:45 +0000 (16:46 +0000)
committerNo Author <no-author@gcc.gnu.org>
Sun, 2 Jan 2005 16:46:45 +0000 (16:46 +0000)
'gcc-3_4-branch'.

From-SVN: r92806

gcc/testsuite/gcc.dg/pr12092-1.c [new file with mode: 0644]

diff --git a/gcc/testsuite/gcc.dg/pr12092-1.c b/gcc/testsuite/gcc.dg/pr12092-1.c
new file mode 100644 (file)
index 0000000..3b13c56
--- /dev/null
@@ -0,0 +1,12 @@
+/* PR rtl-optimization/12092  */
+/* Test case reduced by Andrew Pinski <pinskia@physics.uc.edu> */
+/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
+/* { 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;}
+}
+