mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Test case for revision 69683.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69684 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
33e24adc3b
commit
1d85a1f00b
32
test/FrontendC++/2009-04-21-DtorNames-dbg.cpp
Normal file
32
test/FrontendC++/2009-04-21-DtorNames-dbg.cpp
Normal file
@ -0,0 +1,32 @@
|
||||
// RUN: %llvmgcc -c -g %s -o - | llc -fast -f -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_;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user