Files
clang-p2996/clang/test/CodeGen/2007-04-05-PackedBitFields-2.c
Eric Christopher 85e5156598 Migrate most of the rest of test/FrontendC from llvm and migrate
most of them to FileCheck.

llvm-svn: 136159
2011-07-26 22:17:02 +00:00

17 lines
202 B
C

// RUN: %clang_cc1 %s -emit-llvm -o -
# define pck __attribute__((packed))
struct pck F {
unsigned long long i : 12,
j : 23,
k : 27,
l;
};
struct F f1;
void foo() {
f1.l = 5;
}