blob: b8daf40b2c829ca59d532f6f9a4a646ae274f4c0 [file] [log] [blame]
Daniel Dunbarb3fc0602010-06-29 16:52:18 +00001// RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Daniel Dunbar6f739142010-05-27 18:42:17 +00003
4#pragma pack(push, 1)
5struct s0 {
6 char f0;
7 int f1 __attribute__((aligned(4)));
8};
9extern int a[sizeof(struct s0) == 5 ? 1 : -1];
10#pragma pack(pop)
11
12struct __attribute__((packed)) s1 {
13 char f0;
14 int f1 __attribute__((aligned(4)));
15};
16extern int a[sizeof(struct s1) == 8 ? 1 : -1];
17
18#pragma options align=packed
19struct s2 {
20 char f0;
21 int f1 __attribute__((aligned(4)));
22};
23extern int a[sizeof(struct s2) == 5 ? 1 : -1];
24#pragma options align=reset
Daniel Dunbarddc6ff62010-07-16 04:54:16 +000025
26#pragma pack(1)
27struct s3_0 { unsigned char f0; unsigned int f1; };
28int t3_0[sizeof(struct s3_0) == 5 ? 1 : -1];
29#pragma options align=reset
30struct s3_1 { unsigned char f0; unsigned int f1; };
31int t3_1[sizeof(struct s3_1) == 8 ? 1 : -1];