diff options
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vmx/darwin-abi-3.c | 34 |
2 files changed, 4 insertions, 34 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d1059a69b8d..7760588137a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-03-12 Geoffrey Keating <geoffk@apple.com> + + * gcc.dg/vmx/darwin-abi-3.c: Delete. + 2005-03-11 Per Bothner <per@bothner.com> * gcc.dg/cpp/direct2.c: With new lexer changes, error "before string diff --git a/gcc/testsuite/gcc.dg/vmx/darwin-abi-3.c b/gcc/testsuite/gcc.dg/vmx/darwin-abi-3.c deleted file mode 100644 index af4d15a0c2d..00000000000 --- a/gcc/testsuite/gcc.dg/vmx/darwin-abi-3.c +++ /dev/null @@ -1,34 +0,0 @@ -/* { 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); -} |