Commit 1875b9a0 by Jakub Jelinek Committed by Jakub Jelinek

re PR tree-optimization/71280 (ICE on gcc trunk on knl, wsm, ivb and bdw targets)

	PR tree-optimization/71280
	* gcc.dg/pr71280.c: New test.

From-SVN: r236767
parent 06fca33d
2016-05-26 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/71280
* gcc.dg/pr71280.c: New test.
* gcc.target/i386/avx512vl-vcvtps2ph-3.c: New test.
* gcc.target/i386/avx512bw-vpalignr-4.c: New test.
......
/* PR tree-optimization/71280 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
extern char v[];
int
foo ()
{
int k = 0;
typedef char T[64];
for (int i = 0; i < 64; i++)
k += (*(T *) &v[0])[i];
return k;
}
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