* gcc.dg/torture/pr47968.c: Ignore warnings.
authorJakub Jelinek <jakub@redhat.com>
Sat, 5 Mar 2011 00:01:32 +0000 (01:01 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Sat, 5 Mar 2011 00:01:32 +0000 (01:01 +0100)
From-SVN: r170691

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/pr47968.c

index 055e9ac60d11c8fdc7df603f2800a008d813d89e..8b09c9915ff3b23e895ef13da1a1e03b2e0590a7 100644 (file)
@@ -1,5 +1,7 @@
 2011-03-05  Jakub Jelinek  <jakub@redhat.com>
 
+       * gcc.dg/torture/pr47968.c: Ignore warnings.
+
        PR tree-optimization/47967
        * gcc.c-torture/compile/pr47967.c: New test.
 
index 5d60a0f4c7bbbf6d4f1948444767647228185da7..4f33cf1f349fe7b819f515151a6abf342f087423 100644 (file)
@@ -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;
 }
-