Teach getZeroExtendExpr and getSignExtendExpr to use trip-count
[llvm/msp430.git] / test / FrontendC++ / 2009-04-21-DtorNames-dbg.cpp
blob4bd8e771e5279d172075cf12a778c46fb0fad8b7
1 // RUN: %llvmgcc -c -g %s -o - | llc -fast -f -o %t.s
2 // RUN: %compile_c %t.s -o %t.o
3 // PR4025
5 template <typename _Tp> class vector
7 public:
8 ~vector ()
13 class Foo
15 ~Foo();
16 class FooImpl *impl_;
19 namespace {
20 class Bar;
23 class FooImpl
25 vector<Bar*> thing;
28 Foo::~Foo()
30 delete impl_;