mirror of git://gcc.gnu.org/git/gcc.git
re PR tree-optimization/45047 (ICE in vectorizable_store)
PR tree-optimization/45047 * gcc.c-torture/compile/pr45047.c: New test. From-SVN: r162475
This commit is contained in:
parent
c5b79d4eb8
commit
52e092abdd
|
@ -1,3 +1,8 @@
|
||||||
|
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>
|
2010-07-23 Uros Bizjak <ubizjak@gmail.com>
|
||||||
|
|
||||||
* gcc.dg/float-range-3.c: Use "dg-do compile" dejagnu directive
|
* gcc.dg/float-range-3.c: Use "dg-do compile" dejagnu directive
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
/* 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;
|
||||||
|
}
|
Loading…
Reference in New Issue