Commit 5b5826c4 by Richard Biener Committed by Richard Biener

re PR tree-optimization/66419 (FAIL: gcc.target/aarch64/aapcs64/va_arg-6.c execution, -O3 -g)

2015-06-09  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/66419
	* tree-vect-slp.c (vect_supported_load_permutation_p): Properly
	consider GROUP_GAP when detecting a perfect subchain.

	* gcc.dg/vect/bb-slp-37.c: New testcase.

From-SVN: r224271
parent 0a210a19
2015-06-09 Richard Biener <rguenther@suse.de>
PR tree-optimization/66419
* tree-vect-slp.c (vect_supported_load_permutation_p): Properly
consider GROUP_GAP when detecting a perfect subchain.
2015-06-09 Nick Clifton <nickc@redhat.com>
* config/rl78/rl78.c (rl78_select_section): When -mes0 is active
......
2015-06-09 Richard Biener <rguenther@suse.de>
PR tree-optimization/66419
* gcc.dg/vect/bb-slp-37.c: New testcase.
2015-06-09 Shiva Chen <shiva0217@gmail.com>
* gcc.target/arm/stl-cond.c: New test.
......
/* { dg-require-effective-target vect_int } */
#include "tree-vect.h"
extern void abort (void);
int a[16];
int b[4];
void __attribute__((noinline))
foo (void)
{
b[0] = a[0];
b[1] = a[4];
b[2] = a[8];
b[3] = a[12];
}
int main()
{
int i;
check_vect ();
for (i = 0; i < 16; ++i)
{
a[i] = i;
__asm__ volatile ("");
}
foo ();
if (b[0] != 0 || b[1] != 4 || b[2] != 8 || b[3] != 12)
abort ();
return 0;
}
......@@ -1439,7 +1439,9 @@ vect_supported_load_permutation_p (slp_instance slp_instn)
next_load = NULL;
FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), j, load)
{
if (j != 0 && next_load != load)
if (j != 0
&& (next_load != load
|| GROUP_GAP (vinfo_for_stmt (load)) != 1))
{
subchain_p = false;
break;
......
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