diff options
Diffstat (limited to 'test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp')
-rw-r--r-- | test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp b/test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp new file mode 100644 index 000000000000..c37f5dce32b2 --- /dev/null +++ b/test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp @@ -0,0 +1,12 @@ +// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s + +// CHECK-NOT: i32 6 +struct QVectorTypedData { + int size; + unsigned int sharable : 1; + unsigned short array[1]; +}; + +void foo(QVectorTypedData *X) { + X->array[0] = 123; +} |