OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
2006-01-01 Andreas Tobler <a.tobler@schweiz.ch>
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
gcc.target
/
powerpc
/
darwin-abi-11.c
1
/* { dg-do compile { target powerpc*-*-darwin* } } */
2
/* { dg-require-effective-target ilp32 } */
3
/* { dg-xfail-if "" { powerpc*-*-darwin* } } */
4
/* { dg-options "-Wno-long-long" } */
5
6
struct A
7
{
8
long long a;
9
unsigned char b;
10
};
11
12
struct D
13
{
14
unsigned char y;
15
struct A x;
16
unsigned char z;
17
};
18
19
struct E
20
{
21
long long d;
22
unsigned char e;
23
};
24
25
struct y
26
{
27
struct A b2;
28
struct D b3;
29
struct E b4;
30
};
31
32
int f[sizeof(struct y)!=56?-1:1];