Lines Matching defs:packed
4 // RUN: -o "expr alignof(packed)" \
5 // RUN: -o "expr sizeof(packed)" \
12 struct __attribute__((packed)) packed {
17 static_assert(alignof(packed) == 1);
18 static_assert(sizeof(packed) == 9);
20 // CHECK: (lldb) expr alignof(packed)
22 // CHECK: (lldb) expr sizeof(packed)
25 struct __attribute__((packed, aligned(16))) packed_and_aligned {
38 struct __attribute__((packed)) packed_base { int x; };
41 struct derived : packed, packed_base {} g_derived;