From: Richard Smith Date: Sun, 14 Jul 2013 06:17:03 +0000 (+0000) Subject: Delete a test that is checking badly for a point bug that Clang never had (and that... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e143c98247fa8e42eaf38f50e76d0d4c7260b715;p=clang Delete a test that is checking badly for a point bug that Clang never had (and that spuriously fails with modules enabled). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186278 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp b/test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp deleted file mode 100644 index c37f5dce32..0000000000 --- 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; -}