This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] Fix gcc.target/i386/pr84309.c testcase (PR target/84575)
- From: Jakub Jelinek <jakub at redhat dot com>
- To: "H.J. Lu" <hjl dot tools at gmail dot com>
- Cc: GCC Patches <gcc-patches at gcc dot gnu dot org>
- Date: Tue, 27 Feb 2018 17:57:58 +0100
- Subject: Re: [PATCH] Fix gcc.target/i386/pr84309.c testcase (PR target/84575)
- Authentication-results: sourceware.org; auth=none
- References: <20180227090156.GC5867@tucnak> <CAMe9rOq0Gd7RE7w5Mwyix-OVu=WHKN1nDxEMXwzaadXgooZgAQ@mail.gmail.com>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Tue, Feb 27, 2018 at 08:53:15AM -0800, H.J. Lu wrote:
> On Tue, Feb 27, 2018 at 1:01 AM, Jakub Jelinek <jakub@redhat.com> wrote:
> >
>
> NOPATCH.
Oops, sorry, here it is:
2018-02-27 Jakub Jelinek <jakub@redhat.com>
PR target/84575
* gcc.target/i386/pr84309.c: Add -mno-avx2 to dg-options.
--- gcc/testsuite/gcc.target/i386/pr84309.c.jj 2018-02-13 09:33:31.119560170 +0100
+++ gcc/testsuite/gcc.target/i386/pr84309.c 2018-02-27 09:42:01.197135520 +0100
@@ -1,6 +1,6 @@
/* PR middle-end/84309 */
/* { dg-do compile } */
-/* { dg-options "-Ofast -mavx" } */
+/* { dg-options "-Ofast -mavx -mno-avx2" } */
double pow (double, double) __attribute__((simd));
double exp (double) __attribute__((simd));
Jakub