PR tree-optimization/23546
* gcc.dg/tree-ssa/pr23546.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@103473
138bc75d-0d04-0410-961f-
82ee72b054a4
+2005-08-24 Paolo Bonzini <bonzini@gnu.org>
+
+ PR tree-optimization/23546
+ * gcc.dg/tree-ssa/pr23546.c: New test.
+
2005-08-24 Thomas Koenig <Thomas.Koenig@online.de>
PR fortran/17758
- gfortran.dg/nonreturning_statements.f90: New test.
+ * gfortran.dg/nonreturning_statements.f90: New test.
2005-08-24 Nathan Sidwell <nathan@codesourcery.com>
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+typedef int m64 __attribute__ ((__vector_size__ (8)));
+
+void mmxCombineMaskU (m64 * mask, int width)
+{
+ while (--width >= 0)
+ *mask++ = (m64) 0LL;
+}
+