Commit 0f0dda20 by H.J. Lu Committed by H.J. Lu

Add a testcase for PR middle-end/44144.

2010-10-13  H.J. Lu  <hongjiu.lu@intel.com>

	PR middle-end/44144
	* gcc.target/i386/pr44144.c: New.

From-SVN: r165446
parent 1f561f9b
2010-10-13 H.J. Lu <hongjiu.lu@intel.com>
PR middle-end/44144
* gcc.target/i386/pr44144.c: New.
2010-10-13 H.J. Lu <hongjiu.lu@intel.com>
PR target/44180
* gcc.target/i386/pr44180.c: New.
......
/* { dg-do compile } */
/* { dg-options "-O2 -ftree-vectorize -mavx" } */
void
foo (char * dest, int xcount, int ycount)
{
int x, y;
for (y = 0; y < ycount; y++)
for (x = 0; x < xcount; x++)
dest[x + y*2] = 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment