blob: 61bd1d33c9d6e457af92615cfffd1941637bc5f0 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -verify %s
Eli Friedmanc5082032009-02-22 03:31:23 +00002
3// PR3433
4double g1;
5short chk1[__alignof__(g1) == 8 ? 1 : -1];
Eli Friedman1eed6022009-05-25 21:27:19 +00006short chk2[__alignof__(double) == 8 ? 1 : -1];
7
8long long g2;
9short chk1[__alignof__(g2) == 8 ? 1 : -1];
10short chk2[__alignof__(long long) == 8 ? 1 : -1];
11
12_Complex double g3;
13short chk1[__alignof__(g3) == 8 ? 1 : -1];
14short chk2[__alignof__(_Complex double) == 8 ? 1 : -1];
Charles Davis05f62472010-02-23 04:52:00 +000015
16// PR6362
Carl Norume224ba72011-03-07 22:57:45 +000017struct __attribute__((packed)) {unsigned int a;} g4;
Charles Davis05f62472010-02-23 04:52:00 +000018short chk1[__alignof__(g4) == 1 ? 1 : -1];
19short chk2[__alignof__(g4.a) == 1 ? 1 : -1];
20
Argyrios Kyrtzidiscd88b412011-04-26 21:05:39 +000021
22// PR5637
23
24#define ALIGNED(x) __attribute__((aligned(x)))
25
26typedef ALIGNED(2) struct {
27 char a[3];
28} T;
29
30short chk1[sizeof(T) == 3 ? 1 : -1];
31short chk2[sizeof(T[1]) == 4 ? 1 : -1];
32short chk3[sizeof(T[2]) == 6 ? 1 : -1];
33short chk4[sizeof(T[2][1]) == 8 ? 1 : -1];
34short chk5[sizeof(T[1][2]) == 6 ? 1 : -1];
35
36typedef struct ALIGNED(2) {
37 char a[3];
38} T2;
39
40short chk1[sizeof(T2) == 4 ? 1 : -1];
41short chk2[sizeof(T2[1]) == 4 ? 1 : -1];
42short chk3[sizeof(T2[2]) == 8 ? 1 : -1];
43short chk4[sizeof(T2[2][1]) == 8 ? 1 : -1];
44short chk5[sizeof(T2[1][2]) == 8 ? 1 : -1];