Commit 72e7cd6e by Jakub Jelinek Committed by Jakub Jelinek

re PR target/70290 (-mavx512vl breaks parsing of C++ vector condition)

	PR target/70290
	* g++.dg/ext/pr70290.C: Add -Wno-psabi -w to dg-options.  Formatting.

From-SVN: r234450
parent ce9d0c03
2016-03-24 Jakub Jelinek <jakub@redhat.com>
PR target/70290
* g++.dg/ext/pr70290.C: Add -Wno-psabi -w to dg-options. Formatting.
2016-03-24 Richard Biener <rguenther@suse.de> 2016-03-24 Richard Biener <rguenther@suse.de>
PR tree-optimization/70372 PR tree-optimization/70372
......
/* PR target/70290 */
/* { dg-do compile } */ /* { dg-do compile } */
/* { dg-options "-Wno-psabi -w" } */
/* { dg-additional-options "-mavx512vl" { target { i?86-*-* x86_64-*-* } } } */ /* { dg-additional-options "-mavx512vl" { target { i?86-*-* x86_64-*-* } } } */
typedef int vec __attribute__((vector_size(32))); typedef int vec __attribute__((vector_size(32)));
vec vec
test1 (vec x,vec y) test1 (vec x, vec y)
{ {
return (x < y) ? 1 : 0; return (x < y) ? 1 : 0;
} }
vec vec
test2 (vec x,vec y) test2 (vec x, vec y)
{ {
vec zero = { }; vec zero = { };
vec one = zero + 1; vec one = zero + 1;
......
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