1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 22:12:57 +02:00
llvm-mirror/test/C++Frontend/2007-10-01-StructResize.ll
Devang Patel 6b21d8cc55 New test.
llvm-svn: 42517
2007-10-02 00:39:19 +00:00

15 lines
175 B
LLVM

// RUN: %llvmgxx -c %s -o /dev/null
#pragma pack(4)
struct Bork {
unsigned int f1 : 3;
unsigned int f2 : 30;
};
int Foo(Bork *hdr) {
hdr->f1 = 7;
hdr->f2 = 927;
}