According to my auto-simplifier the most common missed simplifications in
[llvm/stm8.git] / test / FrontendC++ / 2009-06-16-DebugInfoCrash.cpp
blobc2a841b1a6742a08d99b5dcffea818b833ab04c4
1 // RUN: %llvmgxx -S %s -o /dev/null -g
2 // This crashes if we try to emit debug info for TEMPLATE_DECL members.
3 template <class T> class K2PtrVectorBase {};
4 template <class T> class K2Vector {};
5 template <class U > class K2Vector<U*> : public K2PtrVectorBase<U*> {};
6 class ScriptInfoManager {
7 void PostRegister() ;
8 template <class SI> short ReplaceExistingElement(K2Vector<SI*>& v);
9 };
10 void ScriptInfoManager::PostRegister() {}