2018-12-15  Jakub Jelinek  <jakub@redhat.com>

	PR target/88489
	* gcc.target/i386/avx512vl-vfixupimmsd-2.c: New test.
	* gcc.target/i386/avx512vl-vfixupimmss-2.c: New test.

From-SVN: r268063
This commit is contained in:
Jakub Jelinek 2019-01-18 10:14:18 +01:00 committed by Jakub Jelinek
parent 2185e212e9
commit 05d256037d
3 changed files with 49 additions and 0 deletions

View File

@ -1,3 +1,12 @@
2019-01-18 Jakub Jelinek <jakub@redhat.com>
Reapply:
2018-12-15 Jakub Jelinek <jakub@redhat.com>
PR target/88489
* gcc.target/i386/avx512vl-vfixupimmsd-2.c: New test.
* gcc.target/i386/avx512vl-vfixupimmss-2.c: New test.
2019-01-18 Martin Liska <mliska@suse.cz>
PR middle-end/88587

View File

@ -0,0 +1,20 @@
/* { dg-do run } */
/* { dg-options "-mavx512vl -O2 -std=gnu99" } */
/* { dg-require-effective-target avx512vl } */
/* { dg-require-effective-target c99_runtime } */
#define AVX512VL
#define AVX512F_LEN 512
#define AVX512F_LEN_HALF 256
#include "avx512f-vfixupimmsd-2.c"
static void
test_256 (void)
{
test_512 ();
}
static void
test_128 (void)
{
}

View File

@ -0,0 +1,20 @@
/* { dg-do run } */
/* { dg-options "-mavx512vl -O2 -std=gnu99" } */
/* { dg-require-effective-target avx512vl } */
/* { dg-require-effective-target c99_runtime } */
#define AVX512VL
#define AVX512F_LEN 512
#define AVX512F_LEN_HALF 256
#include "avx512f-vfixupimmss-2.c"
static void
test_256 (void)
{
test_512 ();
}
static void
test_128 (void)
{
}