aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/test9766.d
blob: 3cfc22f0464c50b88fc1004352c882e2e0272c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// PERMUTE_ARGS:

size_t getAlign9766(size_t n) { return n; }

struct S9766
{
align(getAlign9766(1)):
    ubyte[5] pad1;
    ubyte var1;

align(getAlign9766(2)):
    ubyte[5] pad2;
    ubyte var2;

align(getAlign9766(4)):
    ubyte[5] pad3;
    ubyte var3;

align(getAlign9766(8)):
    ubyte[5] pad4;
    ubyte var4;
}

static assert(S9766.pad1.offsetof == 0);
static assert(S9766.var1.offsetof == 5);

static assert(S9766.pad2.offsetof == 6);
static assert(S9766.var2.offsetof == 12);

static assert(S9766.pad3.offsetof == 16);
static assert(S9766.var3.offsetof == 24);

static assert(S9766.pad4.offsetof == 32);
static assert(S9766.var4.offsetof == 40);

union U9766
{
    struct
    {
    align(getAlign9766(1)):
        ubyte[5] pad1;
        ubyte var1;

    align(getAlign9766(2)):
        ubyte[5] pad2;
        ubyte var2;

    align(getAlign9766(4)):
        ubyte[5] pad3;
        ubyte var3;

    align(getAlign9766(8)):
        ubyte[5] pad4;
        ubyte var4;
    }
}

static assert(U9766.pad1.offsetof == 0);
static assert(U9766.var1.offsetof == 5);

static assert(U9766.pad2.offsetof == 6);
static assert(U9766.var2.offsetof == 12);

static assert(U9766.pad3.offsetof == 16);
static assert(U9766.var3.offsetof == 24);

static assert(U9766.pad4.offsetof == 32);
static assert(U9766.var4.offsetof == 40);

struct TestMaxAlign
{
align(1u << 31):
    ubyte a;
    ubyte b;
}

static assert(TestMaxAlign.b.offsetof == 2147483648u);