varargs-4.c: Remove a Darwin-specific check.
authorJanis Johnson <janis187@us.ibm.com>
Fri, 23 Jul 2004 18:25:47 +0000 (18:25 +0000)
committerJanis Johnson <janis@gcc.gnu.org>
Fri, 23 Jul 2004 18:25:47 +0000 (18:25 +0000)
2004-07-23  Janis Johnson  <janis187@us.ibm.com>

* gcc.dg/vmx/varargs-4.c: Remove a Darwin-specific check.
* gcc.dg/darwin-abi-3.c: New test.

From-SVN: r85087

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vmx/darwin-abi-3.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/vmx/varargs-4.c

index ffb8606522e9b41b6bc17236fce9249754818bcc..7e6a5ea3d38081225eed43f47e20eae68586e451 100644 (file)
@@ -1,5 +1,8 @@
 2004-07-23  Janis Johnson  <janis187@us.ibm.com>
 
+       * gcc.dg/vmx/varargs-4.c: Remove a Darwin-specific check.
+       * gcc.dg/darwin-abi-3.c: New test.
+
        * gcc.dg/vmx/debug-1.c: Use int, not long, in union with vector.
        * gcc.dg/vmx/varargs-1.c: Use int, not long, in union with vector.
 
diff --git a/gcc/testsuite/gcc.dg/vmx/darwin-abi-3.c b/gcc/testsuite/gcc.dg/vmx/darwin-abi-3.c
new file mode 100644 (file)
index 0000000..af4d15a
--- /dev/null
@@ -0,0 +1,34 @@
+/* { dg-do run { target powerpc*-*-darwin* } } */
+
+/* This check was originally in test vmx/varargs-4.c.  It does not
+   match the expected behavior according to the PowerPC-64 ELF ABI.  */
+
+#include <altivec.h>
+
+extern void abort (void);
+extern void exit (int);
+
+typedef struct n_a
+{
+  signed char m1;
+  short m2;
+  int m3;
+  double m4;
+  vector float m5;
+}
+n_a;
+
+typedef struct n_a_x
+{
+  n_a b;
+  char a;
+}
+n_a_x;
+
+int
+main ()
+{
+    if (sizeof (n_a_x) - sizeof (n_a) != sizeof (n_a))
+        abort ();
+    exit (0);
+}
index 5433329e52624194a6ad8acf30d960006040c2b4..a175519532133045a557d7623e82925cbfa9938e 100644 (file)
@@ -13,13 +13,6 @@ typedef struct n_a
 }
 n_a;
 
-typedef struct n_a_x
-{
-  n_a b;
-  char a;
-}
-n_a_x;
-
 static n_a gn_a;
 
 static int
@@ -103,7 +96,6 @@ initn_a(signed char p1, short p2, int p3, double p4, vector float p5)
        "i.m5");
 
   check(sizeof(n_a) == 32, "sizeof(n_a)");
-  check(sizeof(n_a_x) - sizeof(n_a) == 32, "align(n_a_x)");
 
   check(offsetof(n_a, m1) == 0,  "offsetof(m1)");
   check(offsetof(n_a, m2) == 2,  "offsetof(m2)");