diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-19 22:25:02 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-19 22:25:02 +0000 |
commit | 97b02c5b69faf19b052f2f54062c00d3ee508e85 (patch) | |
tree | d1fb047cf003e7faedade01d74c35a3fb3f2cc3b | |
parent | 44f609cb821ca41505d748ec26006ff88a07d14b (diff) |
Migrate 2007-10-01-StructResize.cpp from llvm/test/FrontendC++.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138117 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/2007-10-01-StructResize.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGenCXX/2007-10-01-StructResize.cpp b/test/CodeGenCXX/2007-10-01-StructResize.cpp new file mode 100644 index 0000000000..8e5750d3c4 --- /dev/null +++ b/test/CodeGenCXX/2007-10-01-StructResize.cpp @@ -0,0 +1,13 @@ +// RUN: %clang_cc1 -emit-llvm %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; +} |