From e143c98247fa8e42eaf38f50e76d0d4c7260b715 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Sun, 14 Jul 2013 06:17:03 +0000 Subject: [PATCH] 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 --- test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 test/CodeGenCXX/2005-02-14-BitFieldOffset.cpp 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; -} -- 2.40.0