* gcc.dg/vmx/darwin-abi-3.c: Delete.

From-SVN: r96332
This commit is contained in:
Geoffrey Keating 2005-03-12 10:26:56 +00:00 committed by Geoffrey Keating
parent 9a2a5d3746
commit 5269bfe280
2 changed files with 4 additions and 34 deletions

View File

@ -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

View File

@ -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);
}