aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC++/2005-02-14-BitFieldOffset.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-08-19 23:41:50 +0000
committerEric Christopher <echristo@apple.com>2011-08-19 23:41:50 +0000
commit483699c2961f21b76914bbf8c1b5a29a3c15672b (patch)
treeb3f5f850259c714d0916178bd335da3838f799d4 /test/FrontendC++/2005-02-14-BitFieldOffset.cpp
parent93d39be5300702d8c9892ec04a492a6056926462 (diff)
Remove migrated or obsolete tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2005-02-14-BitFieldOffset.cpp')
-rw-r--r--test/FrontendC++/2005-02-14-BitFieldOffset.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/FrontendC++/2005-02-14-BitFieldOffset.cpp b/test/FrontendC++/2005-02-14-BitFieldOffset.cpp
deleted file mode 100644
index 522e20a478..0000000000
--- a/test/FrontendC++/2005-02-14-BitFieldOffset.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-// RUN: %llvmgxx %s -S -o - | not grep {i32 6}
-
-struct QVectorTypedData {
- int size;
- unsigned int sharable : 1;
- unsigned short array[1];
-};
-
-void foo(QVectorTypedData *X) {
- X->array[0] = 123;
-}