From: Eric Christopher Date: Fri, 19 Aug 2011 21:51:39 +0000 (+0000) Subject: Remove tests migrated to clang. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bd11cae6fa2f05b0499c010f810885433a6fd2f6;p=oota-llvm.git Remove tests migrated to clang. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138100 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/FrontendC++/2009-06-16-DebugInfoCrash.cpp b/test/FrontendC++/2009-06-16-DebugInfoCrash.cpp deleted file mode 100644 index c2a841b1a67..00000000000 --- a/test/FrontendC++/2009-06-16-DebugInfoCrash.cpp +++ /dev/null @@ -1,10 +0,0 @@ -// RUN: %llvmgxx -S %s -o /dev/null -g -// This crashes if we try to emit debug info for TEMPLATE_DECL members. -template class K2PtrVectorBase {}; -template class K2Vector {}; -template class K2Vector : public K2PtrVectorBase {}; -class ScriptInfoManager { - void PostRegister() ; - template short ReplaceExistingElement(K2Vector& v); -}; -void ScriptInfoManager::PostRegister() {} diff --git a/test/FrontendC++/2009-06-20-DarwinPPCLayout.cpp b/test/FrontendC++/2009-06-20-DarwinPPCLayout.cpp deleted file mode 100644 index e0bc043adad..00000000000 --- a/test/FrontendC++/2009-06-20-DarwinPPCLayout.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// RUN: %llvmgxx -S -m32 %s -o - | grep baz | grep global | grep {struct.bar} -// RUN: %llvmgxx -S -m32 %s -o - | grep ccc | grep global | grep {struct.CC} -// RUN: %llvmgxx -S -m32 %s -o - | grep quux | grep global | grep {struct.bar} -// RUN: %llvmgxx -S -m32 %s -o - | grep foo | grep global | grep {struct.SRCFilter::FilterEntry} -// RUN: %llvmgxx -S -m32 %s -o - | grep {struct.bar} | grep {1 x i32} -// RUN: %llvmgxx -S -m32 %s -o - | grep {struct.CC} | grep {struct.payre struct payre { - _T1 first; - _T2 second; - payre() : first(), second() { } -}; -struct KBFP { - double mCutoffFrequency; -}; -class SRCFilter { - struct FilterEntry: public payre{}; - static FilterEntry foo; -}; -SRCFilter::FilterEntry SRCFilter::foo; // 12 bytes -payre baz; // 16 bytes -class CC { // 16 bytes - public: payre x; -}; -class CC ccc; - -struct bar { KBFP x; float* y;}; // 16 bytes -struct bar quux; - diff --git a/test/FrontendC++/2009-06-30-ByrefBlock.cpp b/test/FrontendC++/2009-06-30-ByrefBlock.cpp deleted file mode 100644 index be9c94fd176..00000000000 --- a/test/FrontendC++/2009-06-30-ByrefBlock.cpp +++ /dev/null @@ -1,11 +0,0 @@ -// Insure __block_holder_tmp is allocated on the stack. Darwin only. -// RUN: %llvmgxx %s -S -O2 -o - | egrep {__block_holder_tmp.*alloca} -// XFAIL: * -// XTARGET: darwin -// -// END. -extern void fubar_dispatch_sync(void (^PP)(void)); -void fubar() { - __block void *voodoo; - fubar_dispatch_sync(^(void){voodoo=0;}); -} diff --git a/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp b/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp deleted file mode 100644 index 96e85b24767..00000000000 --- a/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp +++ /dev/null @@ -1,15 +0,0 @@ -// RUN: %llvmgxx %s -S -// XFAIL: darwin - -#include - -class A { -public: - A(); -private: - A(const A&); -}; -void B() -{ - std::set foo; -} diff --git a/test/FrontendC++/2009-07-16-Using.cpp b/test/FrontendC++/2009-07-16-Using.cpp deleted file mode 100644 index c0e031424ac..00000000000 --- a/test/FrontendC++/2009-07-16-Using.cpp +++ /dev/null @@ -1,8 +0,0 @@ -// RUN: %llvmgxx %s -S -o /dev/null - -namespace A { - typedef int B; -} -struct B { -}; -using ::A::B; diff --git a/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp b/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp deleted file mode 100644 index 89a79f24463..00000000000 --- a/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp +++ /dev/null @@ -1,12 +0,0 @@ -// RUN: %llvmgxx -S %s -o - -// rdar://7114564 -struct A { - unsigned long long : (sizeof(unsigned long long) * 8) - 16; -}; -struct B { - A a; -}; -struct B b = { - {} -}; - diff --git a/test/FrontendC++/2009-08-11-VectorRetTy.cpp b/test/FrontendC++/2009-08-11-VectorRetTy.cpp deleted file mode 100644 index 403b59d8f99..00000000000 --- a/test/FrontendC++/2009-08-11-VectorRetTy.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// RUN: %llvmgxx %s -S -o /dev/null -// -typedef void (*Func) (); -typedef long long m64 __attribute__((__vector_size__(8), __may_alias__)); -static inline m64 __attribute__((__always_inline__, __nodebug__)) _mm_set1_pi16() {} -template -static void Bork() { - const m64 mmx_0x00ff = _mm_set1_pi16(); -} -struct A {}; -Func arr[] = { - Bork -};