Mercurial > hg > CbC > CbC_llvm
view clang/test/Templight/templight-prior-template-arg.cpp @ 165:597b3f1c2c93
fix call createTailCallEliminationPass
author | anatofuz |
---|---|
date | Tue, 24 Mar 2020 15:30:52 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -templight-dump %s 2>&1 | FileCheck %s template<class T> class A {}; template <template <class Inner> class Outer> class B {}; // CHECK-LABEL: {{^---$}} // CHECK: {{^name:[ ]+'B::Outer'$}} // CHECK: {{^kind:[ ]+PriorTemplateArgumentSubstitution$}} // CHECK: {{^event:[ ]+Begin$}} // CHECK: {{^orig:[ ]+'.*templight-prior-template-arg.cpp:5:40'}} // CHECK: {{^poi:[ ]+'.*templight-prior-template-arg.cpp:72:1'$}} // CHECK-LABEL: {{^---$}} // CHECK: {{^name:[ ]+'B::Outer'$}} // CHECK: {{^kind:[ ]+PriorTemplateArgumentSubstitution$}} // CHECK: {{^event:[ ]+End$}} // CHECK: {{^orig:[ ]+'.*templight-prior-template-arg.cpp:5:40'}} // CHECK: {{^poi:[ ]+'.*templight-prior-template-arg.cpp:72:1'$}} // // CHECK-LABEL: {{^---$}} // CHECK: {{^name:[ ]+'B<A>'$}} // CHECK: {{^kind:[ ]+TemplateInstantiation$}} // CHECK: {{^event:[ ]+Begin$}} // CHECK: {{^orig:[ ]+'.*templight-prior-template-arg.cpp:6:7'}} // CHECK: {{^poi:[ ]+'.*templight-prior-template-arg.cpp:72:6'$}} // CHECK-LABEL: {{^---$}} // CHECK: {{^name:[ ]+'B<A>'$}} // CHECK: {{^kind:[ ]+TemplateInstantiation$}} // CHECK: {{^event:[ ]+End$}} // CHECK: {{^orig:[ ]+'.*templight-prior-template-arg.cpp:6:7'}} // CHECK: {{^poi:[ ]+'.*templight-prior-template-arg.cpp:72:6'$}} // // CHECK-LABEL: {{^---$}} // CHECK: {{^name:[ ]+'B<A>'$}} // CHECK: {{^kind:[ ]+TemplateInstantiation$}} // CHECK: {{^event:[ ]+Begin$}} // CHECK: {{^orig:[ ]+'.*templight-prior-template-arg.cpp:6:7'}} // CHECK: {{^poi:[ ]+'.*templight-prior-template-arg.cpp:72:6'$}} // CHECK-LABEL: {{^---$}} // CHECK: {{^name:[ ]+'B<A>'$}} // CHECK: {{^kind:[ ]+TemplateInstantiation$}} // CHECK: {{^event:[ ]+End$}} // CHECK: {{^orig:[ ]+'.*templight-prior-template-arg.cpp:6:7'}} // CHECK: {{^poi:[ ]+'.*templight-prior-template-arg.cpp:72:6'$}} // // CHECK-LABEL: {{^---$}} // CHECK: {{^name:[ ]+'B<A>'$}} // CHECK: {{^kind:[ ]+Memoization$}} // CHECK: {{^event:[ ]+Begin$}} // CHECK: {{^orig:[ ]+'.*templight-prior-template-arg.cpp:6:7'}} // CHECK: {{^poi:[ ]+'.*templight-prior-template-arg.cpp:72:6'$}} // CHECK-LABEL: {{^---$}} // CHECK: {{^name:[ ]+'B<A>'$}} // CHECK: {{^kind:[ ]+Memoization$}} // CHECK: {{^event:[ ]+End$}} // CHECK: {{^orig:[ ]+'.*templight-prior-template-arg.cpp:6:7'}} // CHECK: {{^poi:[ ]+'.*templight-prior-template-arg.cpp:72:6'$}} // // CHECK-LABEL: {{^---$}} // CHECK: {{^name:[ ]+'B<A>'$}} // CHECK: {{^kind:[ ]+Memoization$}} // CHECK: {{^event:[ ]+Begin$}} // CHECK: {{^orig:[ ]+'.*templight-prior-template-arg.cpp:6:7'}} // CHECK: {{^poi:[ ]+'.*templight-prior-template-arg.cpp:72:6'$}} // CHECK-LABEL: {{^---$}} // CHECK: {{^name:[ ]+'B<A>'$}} // CHECK: {{^kind:[ ]+Memoization$}} // CHECK: {{^event:[ ]+End$}} // CHECK: {{^orig:[ ]+'.*templight-prior-template-arg.cpp:6:7'}} // CHECK: {{^poi:[ ]+'.*templight-prior-template-arg.cpp:72:6'$}} B<A> b;