mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
241d75b40f
automatically. Use -S with llvm-gcc rather than -c, so tests can work when llvm-gcc is really dragonegg (which can output IR with -S but not -c). llvm-svn: 120160
33 lines
317 B
C++
33 lines
317 B
C++
// RUN: %llvmgcc -S -g %s -o - | llc -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_;
|
|
}
|
|
|