From: Jakub Jelinek Date: Sat, 5 Mar 2011 00:01:32 +0000 (+0100) Subject: * gcc.dg/torture/pr47968.c: Ignore warnings. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=13f1e629cddb0d26cdde206d26ff7a303bed2a34;p=gcc.git * gcc.dg/torture/pr47968.c: Ignore warnings. From-SVN: r170691 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 055e9ac60d1..8b09c9915ff 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,7 @@ 2011-03-05 Jakub Jelinek + * gcc.dg/torture/pr47968.c: Ignore warnings. + PR tree-optimization/47967 * gcc.c-torture/compile/pr47967.c: New test. diff --git a/gcc/testsuite/gcc.dg/torture/pr47968.c b/gcc/testsuite/gcc.dg/torture/pr47968.c index 5d60a0f4c7b..4f33cf1f349 100644 --- a/gcc/testsuite/gcc.dg/torture/pr47968.c +++ b/gcc/testsuite/gcc.dg/torture/pr47968.c @@ -1,4 +1,5 @@ /* { dg-do compile } */ +/* { dg-options "-w -Wno-psabi" } */ typedef __attribute__ ((vector_size (16))) float float4; typedef __attribute__ ((vector_size (16))) double double2; @@ -8,4 +9,3 @@ float foo (double2 d2) float4 f4 = (float4) d2; return *(float *) &f4; } -