Delete a test that is checking badly for a point bug that Clang never had (and that spuriously fails with modules enabled).

llvm-svn: 186278
This commit is contained in:
Richard Smith 2013-07-14 06:17:03 +00:00
parent d9f3f4548e
commit 3460dbbaf6
1 changed files with 0 additions and 12 deletions

View File

@ -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;
}