зеркало из https://github.com/microsoft/clang-1.git
Packed unions should be packed. Fixes an assert Daniel reported.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80808 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
636a0ffbd2
Коммит
d0eb3b93e8
|
@ -28,14 +28,13 @@ using namespace CodeGen;
|
|||
|
||||
void CGRecordLayoutBuilder::Layout(const RecordDecl *D) {
|
||||
Alignment = Types.getContext().getASTRecordLayout(D).getAlignment() / 8;
|
||||
Packed = D->hasAttr<PackedAttr>();
|
||||
|
||||
if (D->isUnion()) {
|
||||
LayoutUnion(D);
|
||||
return;
|
||||
}
|
||||
|
||||
Packed = D->hasAttr<PackedAttr>();
|
||||
|
||||
if (LayoutFields(D))
|
||||
return;
|
||||
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
// RUN: clang-cc -triple x86_64-apple-darwin10 -emit-llvm %s -o %t &&
|
||||
|
||||
// RUN: grep "struct._attrs = type <{ i32, i8 }>" %t &&
|
||||
typedef struct _attrs {
|
||||
unsigned file_attributes;
|
||||
unsigned char filename_length;
|
||||
} __attribute__((__packed__)) attrs;
|
||||
|
||||
// RUN: grep "union._attr_union = type <{ i32, i8 }>" %t
|
||||
typedef union _attr_union {
|
||||
attrs file_attrs;
|
||||
unsigned owner_id;
|
||||
} __attribute__((__packed__)) attr_union;
|
||||
|
||||
attr_union u;
|
||||
|
Загрузка…
Ссылка в новой задаче