mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-11 04:06:20 +00:00
![John McCall](/assets/img/avatar_default.png)
alignment is ignored, and they always allocate a complete storage unit. Also, change the dumping of AST record layouts: use the more readable C++-style dumping even in C, include bitfield offset information in the dump, and don't print sizeof/alignof information for fields of record type, since we don't do so for bases or other kinds of field. rdar://22275433 llvm-svn: 245514
30 lines
632 B
C++
30 lines
632 B
C++
// RUN: %clang_cc1 -emit-llvm-only -triple %itanium_abi_triple -fdump-record-layouts %s 2>/dev/null \
|
|
// RUN: | FileCheck %s
|
|
|
|
union A {
|
|
int f1: 3;
|
|
A();
|
|
};
|
|
|
|
A::A() {}
|
|
|
|
union B {
|
|
char f1: 35;
|
|
B();
|
|
};
|
|
|
|
B::B() {}
|
|
|
|
// CHECK:*** Dumping AST Record Layout
|
|
// CHECK-NEXT: 0 | union A
|
|
// CHECK-NEXT: 0:0-2 | int f1
|
|
// CHECK-NEXT: | [sizeof=4, dsize=1, align=4
|
|
// CHECK-NEXT: | nvsize=1, nvalign=4]
|
|
|
|
// CHECK:*** Dumping AST Record Layout
|
|
// CHECK-NEXT: 0 | union B
|
|
// CHECK-NEXT: 0:0-34 | char f1
|
|
// CHECK-NEXT: | [sizeof=8, dsize=5, align=4
|
|
// CHECK-NEXT: | nvsize=5, nvalign=4]
|
|
|