mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
f1bc4ad1e5
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35686 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
343 B
C++
26 lines
343 B
C++
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
|
|
|
|
#ifdef PACKED
|
|
#define P __attribute__((packed))
|
|
#else
|
|
#define P
|
|
#endif
|
|
|
|
struct UnPacked {
|
|
int X;
|
|
int Y;
|
|
};
|
|
|
|
struct P M_Packed {
|
|
unsigned char A;
|
|
struct UnPacked B;
|
|
};
|
|
|
|
struct M_Packed sM_Packed;
|
|
|
|
int testM_Packed (void) {
|
|
struct M_Packed x;
|
|
return (x.B.Y != 0);
|
|
}
|
|
|