diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-19 22:17:09 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-19 22:17:09 +0000 |
commit | c0f3a1d860787e915ead5fc51ed2f275d0363432 (patch) | |
tree | 16188a340dfd948793b1b550a780afdeda21b5c2 /test/FrontendC++/2009-04-21-DtorNames-dbg.cpp | |
parent | c4762a9c912802ef6e81b722ccb7417f259bb49d (diff) |
Remove tests migrated to clang or are unnecessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138115 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2009-04-21-DtorNames-dbg.cpp')
-rw-r--r-- | test/FrontendC++/2009-04-21-DtorNames-dbg.cpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/test/FrontendC++/2009-04-21-DtorNames-dbg.cpp b/test/FrontendC++/2009-04-21-DtorNames-dbg.cpp deleted file mode 100644 index da09c0b459..0000000000 --- a/test/FrontendC++/2009-04-21-DtorNames-dbg.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// RUN: %llvmgcc -S -g %s -o - | llc --disable-cfi -O0 -o %t.s -// RUN: %compile_c %t.s -o %t.o -// PR4025 - -template <typename _Tp> class vector -{ -public: - ~vector () - { - } -}; - -class Foo -{ - ~Foo(); - class FooImpl *impl_; -}; - -namespace { - class Bar; -} - -class FooImpl -{ - vector<Bar*> thing; -}; - -Foo::~Foo() -{ - delete impl_; -} - |