summaryrefslogtreecommitdiff
path: root/test/Sema/pragma-pack-6.c
blob: c87c99d5dab9667ba7bd3e58403b0ff5c5b386ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %clang_cc1 -triple i686-apple-darwin9 %s -fsyntax-only -verify
// expected-no-diagnostics

// Pragma pack handling with tag declarations

struct X;

#pragma pack(2)
struct X { int x; };
struct Y;
#pragma pack()

struct Y { int y; };

extern int check[__alignof(struct X) == 2 ? 1 : -1];
extern int check[__alignof(struct Y) == 4 ? 1 : -1];