mirror of git://gcc.gnu.org/git/gcc.git
parent
9a2a5d3746
commit
5269bfe280
|
@ -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>
|
2005-03-11 Per Bothner <per@bothner.com>
|
||||||
|
|
||||||
* gcc.dg/cpp/direct2.c: With new lexer changes, error "before string
|
* gcc.dg/cpp/direct2.c: With new lexer changes, error "before string
|
||||||
|
|
|
@ -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);
|
|
||||||
}
|
|
Loading…
Reference in New Issue