[llvm-commits] [llvm] r138156 - in /llvm/trunk/test/FrontendC++: 2004-03-08-ReinterpretCastCopy.cpp 2004-03-09-UnmangledBuiltinMethods.cpp 2004-03-15-CleanupsAndGotos.cpp 2004-06-08-LateTemplateInstantiation.cpp 2004-09-27-CompilerCrash.cpp 2004-09-27-DidntEmitTemplate.cpp 2004-11-27-EmitsUnusedInlineFunctions.cpp 2004-11-27-ExceptionCleanupAssertion.cpp 2004-11-27-FriendDefaultArgCrash.cpp 2004-11-27-InlineAsmFunctionRedefinition.cpp 2005-01-03-StaticInitializers.cpp

Eric Christopher echristo at apple.com
Fri Aug 19 17:08:37 PDT 2011


Author: echristo
Date: Fri Aug 19 19:08:36 2011
New Revision: 138156

URL: http://llvm.org/viewvc/llvm-project?rev=138156&view=rev
Log:
Remove migrated or obsolete tests.

Removed:
    llvm/trunk/test/FrontendC++/2004-03-08-ReinterpretCastCopy.cpp
    llvm/trunk/test/FrontendC++/2004-03-09-UnmangledBuiltinMethods.cpp
    llvm/trunk/test/FrontendC++/2004-03-15-CleanupsAndGotos.cpp
    llvm/trunk/test/FrontendC++/2004-06-08-LateTemplateInstantiation.cpp
    llvm/trunk/test/FrontendC++/2004-09-27-CompilerCrash.cpp
    llvm/trunk/test/FrontendC++/2004-09-27-DidntEmitTemplate.cpp
    llvm/trunk/test/FrontendC++/2004-11-27-EmitsUnusedInlineFunctions.cpp
    llvm/trunk/test/FrontendC++/2004-11-27-ExceptionCleanupAssertion.cpp
    llvm/trunk/test/FrontendC++/2004-11-27-FriendDefaultArgCrash.cpp
    llvm/trunk/test/FrontendC++/2004-11-27-InlineAsmFunctionRedefinition.cpp
    llvm/trunk/test/FrontendC++/2005-01-03-StaticInitializers.cpp

Removed: llvm/trunk/test/FrontendC++/2004-03-08-ReinterpretCastCopy.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2004-03-08-ReinterpretCastCopy.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2004-03-08-ReinterpretCastCopy.cpp (original)
+++ llvm/trunk/test/FrontendC++/2004-03-08-ReinterpretCastCopy.cpp (removed)
@@ -1,21 +0,0 @@
-// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
-
-struct A {
-  virtual void Method() = 0;
-};
-
-struct B : public A {
-  virtual void Method() { }
-};
-
-typedef void (A::*fn_type_a)(void);
-typedef void (B::*fn_type_b)(void);
-
-int main(int argc, char **argv)
-{
-  fn_type_a f = reinterpret_cast<fn_type_a>(&B::Method);
-  fn_type_b g = reinterpret_cast<fn_type_b>(f);
-  B b;
-  (b.*g)();
-  return 0;
-}

Removed: llvm/trunk/test/FrontendC++/2004-03-09-UnmangledBuiltinMethods.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2004-03-09-UnmangledBuiltinMethods.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2004-03-09-UnmangledBuiltinMethods.cpp (original)
+++ llvm/trunk/test/FrontendC++/2004-03-09-UnmangledBuiltinMethods.cpp (removed)
@@ -1,8 +0,0 @@
-// RUN: %llvmgcc -xc++ -S -o - %s | grep _ZN11AccessFlags6strlenEv
-
-struct AccessFlags {
-  void strlen();
-};
-
-void AccessFlags::strlen() { }
-

Removed: llvm/trunk/test/FrontendC++/2004-03-15-CleanupsAndGotos.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2004-03-15-CleanupsAndGotos.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2004-03-15-CleanupsAndGotos.cpp (original)
+++ llvm/trunk/test/FrontendC++/2004-03-15-CleanupsAndGotos.cpp (removed)
@@ -1,14 +0,0 @@
-// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
-
-// Testcase from Bug 291
-
-struct X {
-  ~X();
-};
-
-void foo() {
-  X v;
-
-TryAgain:
-  goto TryAgain;
-}

Removed: llvm/trunk/test/FrontendC++/2004-06-08-LateTemplateInstantiation.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2004-06-08-LateTemplateInstantiation.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2004-06-08-LateTemplateInstantiation.cpp (original)
+++ llvm/trunk/test/FrontendC++/2004-06-08-LateTemplateInstantiation.cpp (removed)
@@ -1,19 +0,0 @@
-// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
-
-
-
-template<typename Ty>
-struct normal_iterator {
-  int FIELD;
-};
-
-void foo(normal_iterator<int>);
-normal_iterator<int> baz();
-
-void bar() {
-  foo(baz());
-}
-
-void *bar2() {
-  return (void*)foo;
-}

Removed: llvm/trunk/test/FrontendC++/2004-09-27-CompilerCrash.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2004-09-27-CompilerCrash.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2004-09-27-CompilerCrash.cpp (original)
+++ llvm/trunk/test/FrontendC++/2004-09-27-CompilerCrash.cpp (removed)
@@ -1,13 +0,0 @@
-// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
-
-struct Pass {} ;
-template<typename PassName>
-Pass *callDefaultCtor() { return new PassName(); }
-
-void foo(Pass *(*C)());
-
-#include <string>
-
-bool foo(std::string &X) {
-  return X.empty();
-}

Removed: llvm/trunk/test/FrontendC++/2004-09-27-DidntEmitTemplate.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2004-09-27-DidntEmitTemplate.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2004-09-27-DidntEmitTemplate.cpp (original)
+++ llvm/trunk/test/FrontendC++/2004-09-27-DidntEmitTemplate.cpp (removed)
@@ -1,23 +0,0 @@
-// RUN: %llvmgxx -xc++ %s -S -o - | grep callDefaultCtor | \
-// RUN:   not grep declare
-
-// This is a testcase for LLVM PR445, which was a problem where the 
-// instantiation of callDefaultCtor was not being emitted correctly.
-
-struct Pass {};
-
-template<typename PassName>
-Pass *callDefaultCtor() { return new Pass(); }
-
-void foo(Pass *(*C)());
-
-struct basic_string {
-  bool empty() const { return true; }
-};
-
-
-bool foo2(basic_string &X) {
-  return X.empty();
-}
-void baz() { foo(callDefaultCtor<Pass>); }
-

Removed: llvm/trunk/test/FrontendC++/2004-11-27-EmitsUnusedInlineFunctions.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2004-11-27-EmitsUnusedInlineFunctions.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2004-11-27-EmitsUnusedInlineFunctions.cpp (original)
+++ llvm/trunk/test/FrontendC++/2004-11-27-EmitsUnusedInlineFunctions.cpp (removed)
@@ -1,7 +0,0 @@
-// The C++ front-end was emitting WAY too many inline functions.  This test
-// verifies that it does not emit the body of getchar, because it is not used.
-// This corresponds to PR459
-
-// RUN: %llvmgxx %s -S -o - | not grep {^i32 .getchar}
-
-#include <stdio.h>

Removed: llvm/trunk/test/FrontendC++/2004-11-27-ExceptionCleanupAssertion.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2004-11-27-ExceptionCleanupAssertion.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2004-11-27-ExceptionCleanupAssertion.cpp (original)
+++ llvm/trunk/test/FrontendC++/2004-11-27-ExceptionCleanupAssertion.cpp (removed)
@@ -1,14 +0,0 @@
-// RUN: %llvmgxx %s -S -o /dev/null
-
-// This is PR421
-
-struct Strongbad {
-    Strongbad(const char *str );
-    ~Strongbad();
-    operator const char *() const;
-};
-
-void TheCheat () {
-  Strongbad foo(0);
-  Strongbad dirs[] = { Strongbad(0) + 1};
-}

Removed: llvm/trunk/test/FrontendC++/2004-11-27-FriendDefaultArgCrash.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2004-11-27-FriendDefaultArgCrash.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2004-11-27-FriendDefaultArgCrash.cpp (original)
+++ llvm/trunk/test/FrontendC++/2004-11-27-FriendDefaultArgCrash.cpp (removed)
@@ -1,9 +0,0 @@
-// RUN: %llvmgxx %s -o /dev/null -S
-
-// PR447
-
-namespace nm {
-  struct str {
-    friend int foo(int arg = 0);
-  };
-}

Removed: llvm/trunk/test/FrontendC++/2004-11-27-InlineAsmFunctionRedefinition.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2004-11-27-InlineAsmFunctionRedefinition.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2004-11-27-InlineAsmFunctionRedefinition.cpp (original)
+++ llvm/trunk/test/FrontendC++/2004-11-27-InlineAsmFunctionRedefinition.cpp (removed)
@@ -1,26 +0,0 @@
-// RUN: %llvmgxx %s -S -o /dev/null
-
-// PR397
-
-struct stat { };
-struct stat64 { };
-
-extern "C" {
-
-extern int lstat(const char *, struct stat *) __asm__("lstat64");
-extern int lstat64(const char *, struct stat64 *);
-
-extern int __lxstat(int, const char *, struct stat *) __asm__("__lxstat64");
-extern int __lxstat64(int, const char *, struct stat64 *);
-
-extern __inline__ int lstat(const char *path, struct stat *statbuf) {
-    return __lxstat(3, path, statbuf);
-}
-extern __inline__ int lstat64(const char *path, struct stat64 *statbuf) {
-    return __lxstat64(3, path, statbuf);
-}
-}
-
-int do_one_file(void) {
-    return lstat(0, 0) + lstat64(0,0);
-}

Removed: llvm/trunk/test/FrontendC++/2005-01-03-StaticInitializers.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2005-01-03-StaticInitializers.cpp?rev=138155&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2005-01-03-StaticInitializers.cpp (original)
+++ llvm/trunk/test/FrontendC++/2005-01-03-StaticInitializers.cpp (removed)
@@ -1,8 +0,0 @@
-// RUN: %llvmgxx %s -S -o - | not grep llvm.global_ctor
-
-struct S {
-  int  A[2];
-};
-
-int XX = (int)(long)&(((struct S*)0)->A[1]);
-





More information about the llvm-commits mailing list