Add a testcase for PR rtl-optimization/47958.

2011-07-28  H.J. Lu  <hongjiu.lu@intel.com>

	PR rtl-optimization/47958
	* gcc.dg/torture/pr47958-1.c: New.

From-SVN: r176914
This commit is contained in:
H.J. Lu 2011-07-29 05:17:36 +00:00 committed by H.J. Lu
parent 02a8fe00b5
commit 7d7d50baf7
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-07-28 H.J. Lu <hongjiu.lu@intel.com>
PR rtl-optimization/47958
* gcc.dg/torture/pr47958-1.c: New.
2011-07-29 Wei Guozhi <carrot@google.com>
PR rtl-optimization/49799

View File

@ -0,0 +1,13 @@
/* { dg-do assemble } */
void (*foo[6][6]) (int);
void bar (hdR)
int hdR;
{ }
void xxx ()
{
unsigned int i, j;
for (i = 0; i < 6; ++i)
for (j = 0; j < 6; ++j)
foo [i][j] = bar;
}