1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Remove the S92 code, which really has nothing to do

with what the test is testing; makes it pass again on ppc32.

llvm-svn: 51167
This commit is contained in:
Dale Johannesen 2008-05-15 22:23:54 +00:00
parent f464bece2d
commit 247e20c532

View File

@ -6,13 +6,6 @@
typedef __builtin_va_list va_list;
typedef unsigned long size_t;
void *memset(void *, int, size_t);
struct S92 { int a:14; } ;
extern struct S92 s92;
struct S92 check92 () { struct S92 ret;
memset (&ret, 0, sizeof (ret));
ret.a = s92.a;
return ret; }
struct S93 { __attribute__((aligned (8))) void * a; } ;
extern struct S93 s93;