re PR tree-optimization/23546 (ICE in for_each_index, at tree-ssa-loop-im.c:202)

2005-08-24  Paolo Bonzini  <bonzini@gnu.org>

	PR tree-optimization/23546
	* gcc.dg/tree-ssa/pr23546.c: New test.

From-SVN: r103473
This commit is contained in:
Paolo Bonzini 2005-08-25 07:02:58 +00:00
parent 0621d71a5c
commit 1b8299747e
2 changed files with 16 additions and 1 deletions

View File

@ -1,7 +1,12 @@
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>

View File

@ -0,0 +1,10 @@
/* { 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;
}