summaryrefslogtreecommitdiffstats
path: root/test/Sema/pragma-pack-apple.c
blob: 426d984e8ae773edc717a26b2afc9b8ba1f1810f (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck %s
// RUN: %clang_cc1 -fsyntax-only -fapple-pragma-pack %s 2>&1 | FileCheck -check-prefix=CHECK-APPLE %s

#pragma pack(push,1)
#pragma pack(2)
#pragma pack()
#pragma pack(show)

// CHECK: pack(show) == 8
// CHECK-APPLE: pack(show) == 1