]> granicus.if.org Git - clang/commitdiff
Delete a test that is checking badly for a point bug that Clang never had (and that...
authorRichard Smith <richard-llvm@metafoo.co.uk>
Sun, 14 Jul 2013 06:17:03 +0000 (06:17 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Sun, 14 Jul 2013 06:17:03 +0000 (06:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186278 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp [deleted file]

diff --git a/test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp b/test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp
deleted file mode 100644 (file)
index c37f5dc..0000000
+++ /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;
-}