Commit 52e092ab by Jakub Jelinek Committed by Jakub Jelinek

re PR tree-optimization/45047 (ICE in vectorizable_store)

	PR tree-optimization/45047
	* gcc.c-torture/compile/pr45047.c: New test.

From-SVN: r162475
parent c5b79d4e
2010-07-23 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/45047
* gcc.c-torture/compile/pr45047.c: New test.
2010-07-23 Uros Bizjak <ubizjak@gmail.com>
* gcc.dg/float-range-3.c: Use "dg-do compile" dejagnu directive
......
/* PR tree-optimization/45047 */
void
foo (const unsigned short *w, char *x, int y, int z)
{
int i;
for (i = 0; i < y; i++)
x[i] = w[i] == z;
}
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