mirror of git://gcc.gnu.org/git/gcc.git
re PR rtl-optimization/50765 (ICE: in expand_insn, at optabs.c:7681 with -ftree-vectorize -fno-tree-dce)
PR tree-optimization/50765 * gcc.dg/pr50765.c: New test. From-SVN: r181617
This commit is contained in:
parent
e2362f5de0
commit
8fb013576c
|
@ -1,3 +1,8 @@
|
||||||
|
2011-11-22 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
PR tree-optimization/50765
|
||||||
|
* gcc.dg/pr50765.c: New test.
|
||||||
|
|
||||||
2011-11-22 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
|
2011-11-22 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
|
||||||
|
|
||||||
* gcc.dg/vshift-1.c (main): Call rand instead of random.
|
* gcc.dg/vshift-1.c (main): Call rand instead of random.
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
/* PR tree-optimization/50765 */
|
||||||
|
/* { dg-do compile } */
|
||||||
|
/* { dg-options "-O3 -fno-tree-dce" } */
|
||||||
|
|
||||||
|
void
|
||||||
|
foo (long *w, long *x, unsigned char *y, int z)
|
||||||
|
{
|
||||||
|
for (; z < 429; z++)
|
||||||
|
w[z] = (-19 ^ y[z]) & x[z];
|
||||||
|
}
|
Loading…
Reference in New Issue