[llvm-commits] [llvm] r138100 - in /llvm/trunk/test/FrontendC++: 2009-06-16-DebugInfoCrash.cpp 2009-06-20-DarwinPPCLayout.cpp 2009-06-30-ByrefBlock.cpp 2009-07-16-PrivateCopyConstructor.cpp 2009-07-16-Using.cpp 2009-08-05-ZeroInitWidth.cpp 2009-08-11-VectorRetTy.cpp

Eric Christopher echristo at apple.com
Fri Aug 19 14:51:39 PDT 2011


Author: echristo
Date: Fri Aug 19 16:51:39 2011
New Revision: 138100

URL: http://llvm.org/viewvc/llvm-project?rev=138100&view=rev
Log:
Remove tests migrated to clang.

Removed:
    llvm/trunk/test/FrontendC++/2009-06-16-DebugInfoCrash.cpp
    llvm/trunk/test/FrontendC++/2009-06-20-DarwinPPCLayout.cpp
    llvm/trunk/test/FrontendC++/2009-06-30-ByrefBlock.cpp
    llvm/trunk/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp
    llvm/trunk/test/FrontendC++/2009-07-16-Using.cpp
    llvm/trunk/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp
    llvm/trunk/test/FrontendC++/2009-08-11-VectorRetTy.cpp

Removed: llvm/trunk/test/FrontendC++/2009-06-16-DebugInfoCrash.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2009-06-16-DebugInfoCrash.cpp?rev=138099&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2009-06-16-DebugInfoCrash.cpp (original)
+++ llvm/trunk/test/FrontendC++/2009-06-16-DebugInfoCrash.cpp (removed)
@@ -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 T> class K2PtrVectorBase {};
-template <class T> class K2Vector {};
-template <class U > class K2Vector<U*> : public K2PtrVectorBase<U*> {};
-class ScriptInfoManager {
-  void PostRegister() ;
-  template <class SI> short ReplaceExistingElement(K2Vector<SI*>& v);
-};
-void ScriptInfoManager::PostRegister() {}

Removed: llvm/trunk/test/FrontendC++/2009-06-20-DarwinPPCLayout.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2009-06-20-DarwinPPCLayout.cpp?rev=138099&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2009-06-20-DarwinPPCLayout.cpp (original)
+++ llvm/trunk/test/FrontendC++/2009-06-20-DarwinPPCLayout.cpp (removed)
@@ -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<KBFP,float*} | grep {.base.32} | grep {1 x i32}
-// RUN: %llvmgxx -S -m32 %s -o - | grep {struct.SRCFilter::FilterEntry} | not grep {1 x i32}
-// XFAIL: *
-// XTARGET: powerpc-apple-darwin
-
-template<class _T1, class _T2>     struct payre     {
-  _T1 first;
-  _T2 second;
-  payre()       : first(), second() {    }
-};
-struct KBFP {
-  double mCutoffFrequency;
-};
-class SRCFilter {
-  struct FilterEntry: public payre<KBFP, float*>{};
-  static FilterEntry foo;
-};
-SRCFilter::FilterEntry SRCFilter::foo;    // 12 bytes
-payre<KBFP, float*> baz;                  // 16 bytes
-class CC {                                // 16 bytes
-  public: payre<KBFP, float*> x;          
-};
-class CC ccc;
-
-struct bar { KBFP x; float* y;};          // 16 bytes
-struct bar quux;
-

Removed: llvm/trunk/test/FrontendC++/2009-06-30-ByrefBlock.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2009-06-30-ByrefBlock.cpp?rev=138099&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2009-06-30-ByrefBlock.cpp (original)
+++ llvm/trunk/test/FrontendC++/2009-06-30-ByrefBlock.cpp (removed)
@@ -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
-// <rdar://problem/5865221>
-// END.
-extern void fubar_dispatch_sync(void (^PP)(void));
-void fubar() {
-  __block void *voodoo;
- fubar_dispatch_sync(^(void){voodoo=0;});
-}

Removed: llvm/trunk/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2009-07-16-PrivateCopyConstructor.cpp?rev=138099&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp (original)
+++ llvm/trunk/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp (removed)
@@ -1,15 +0,0 @@
-// RUN: %llvmgxx %s -S
-// XFAIL: darwin
-
-#include <set>
-
-class A {
-public:
-  A();
-private:
-  A(const A&);
-};
-void B()
-{
-  std::set<void *, A> foo;
-}

Removed: llvm/trunk/test/FrontendC++/2009-07-16-Using.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2009-07-16-Using.cpp?rev=138099&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2009-07-16-Using.cpp (original)
+++ llvm/trunk/test/FrontendC++/2009-07-16-Using.cpp (removed)
@@ -1,8 +0,0 @@
-// RUN: %llvmgxx %s -S -o /dev/null
-
-namespace A {
-  typedef int B;
-}
-struct B {
-};
-using ::A::B;

Removed: llvm/trunk/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2009-08-05-ZeroInitWidth.cpp?rev=138099&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp (original)
+++ llvm/trunk/test/FrontendC++/2009-08-05-ZeroInitWidth.cpp (removed)
@@ -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 = {
-  {}
-};
-

Removed: llvm/trunk/test/FrontendC++/2009-08-11-VectorRetTy.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2009-08-11-VectorRetTy.cpp?rev=138099&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2009-08-11-VectorRetTy.cpp (original)
+++ llvm/trunk/test/FrontendC++/2009-08-11-VectorRetTy.cpp (removed)
@@ -1,13 +0,0 @@
-// RUN: %llvmgxx %s -S -o /dev/null
-// <rdar://problem/7096460>
-typedef void (*Func) ();
-typedef long long m64 __attribute__((__vector_size__(8), __may_alias__));
-static inline m64 __attribute__((__always_inline__, __nodebug__)) _mm_set1_pi16() {}
-template <class MM>
-static void Bork() {
-  const m64 mmx_0x00ff = _mm_set1_pi16();
-}
-struct A {};
-Func arr[] = {
-  Bork<A>
-};





More information about the llvm-commits mailing list