From: jakub Date: Sat, 5 Mar 2011 00:01:32 +0000 (+0000) Subject: * gcc.dg/torture/pr47968.c: Ignore warnings. X-Git-Tag: upstream/4.9.2~22456 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=21c2fc7309b54311be08351e32815a27a58ae6d8;p=platform%2Fupstream%2Flinaro-gcc.git * gcc.dg/torture/pr47968.c: Ignore warnings. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170691 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 055e9ac..8b09c99 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 5d60a0f..4f33cf1 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; } -