Commit 8fb01357 by Jakub Jelinek Committed by Jakub Jelinek

re PR rtl-optimization/50765 (ICE: in expand_insn, at optabs.c:7681 with…

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
parent e2362f5d
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.
......
/* 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];
}
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