mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 08:40:27 +08:00
re PR tree-optimization/87320 (Last iteration of vectorized loop not executed when peeling for gaps)
PR tree-optimization/87320 * gcc.dg/pr87320.c: New test. From-SVN: r266805
This commit is contained in:
parent
31475afaca
commit
6c620b0744
@ -1,3 +1,8 @@
|
||||
2018-12-04 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/87320
|
||||
* gcc.dg/pr87320.c: New test.
|
||||
|
||||
2018-12-04 Jeff Law <law@redhat.com>
|
||||
|
||||
* gcc.dg/strlenopt-58.c: Handle targets with 2 byte wchar_t.
|
||||
|
28
gcc/testsuite/gcc.dg/pr87320.c
Normal file
28
gcc/testsuite/gcc.dg/pr87320.c
Normal file
@ -0,0 +1,28 @@
|
||||
/* PR tree-optimization/87320 */
|
||||
/* { dg-do run } */
|
||||
/* { dg-options "-O3" } */
|
||||
/* { dg-additional-options "-mavx" { target avx_runtime } } */
|
||||
|
||||
static void __attribute__ ((noinline))
|
||||
transpose_vector (unsigned long n)
|
||||
{
|
||||
unsigned long data[2 * n];
|
||||
for (unsigned long i = 0; i < 2 * n; i++)
|
||||
data[i] = 4 * i + 2;
|
||||
|
||||
unsigned long transposed[n];
|
||||
for (unsigned long i = 0; i < n; i++)
|
||||
transposed[i] = data[2 * i];
|
||||
|
||||
for (unsigned long i = 0; i < n; i++)
|
||||
if (transposed[i] != 8 * i + 2)
|
||||
__builtin_abort ();
|
||||
}
|
||||
|
||||
int
|
||||
main ()
|
||||
{
|
||||
transpose_vector (4);
|
||||
transpose_vector (120);
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user