brintos

brintos / llvm-project-archived public Read only

0
0
Text · 289 B · 426d984 Raw
11 lines · c
1// RUN: %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck %s2// RUN: %clang_cc1 -fsyntax-only -fapple-pragma-pack %s 2>&1 | FileCheck -check-prefix=CHECK-APPLE %s3 4#pragma pack(push,1)5#pragma pack(2)6#pragma pack()7#pragma pack(show)8 9// CHECK: pack(show) == 810// CHECK-APPLE: pack(show) == 111