re PR middle-end/23831 (ICE in immed_double_const with vectorized multipication)

PR middle-end/23831
	* gcc.dg/vect/pr23831.c: New test.

From-SVN: r104651
This commit is contained in:
Uros Bizjak 2005-09-26 20:17:53 +02:00 committed by Ian Lance Taylor
parent 3242fbd83f
commit 0f9284bf83
2 changed files with 13 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2005-09-26 Uros Bizjak <uros@kss-loka.si>
PR middle-end/23831
* gcc.dg/vect/pr23831.c: New test.
PR target/24055
* gcc.target/i386/pr24055.c: New test.

View File

@ -0,0 +1,10 @@
/* { dg-do compile } */
/* { dg-require-effective-target vect_int } */
void foo (void)
{
static unsigned int bm[16];
int j;
for (j = 0; j < 16; j++)
bm[j] = bm[j] * 8;
}