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, 0 insertions, 12 deletions
diff --git a/test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp b/test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp deleted file mode 100644 index c37f5dc..0000000 --- a/test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp +++ /dev/null @@ -1,12 +0,0 @@ -// 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; -} |