Skip to content
Snippets Groups Projects
Commit 4249ebf5 authored by Richard Trieu's avatar Richard Trieu
Browse files

[ODRHash] Add TemplateArgument kind to hash.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@305328 91177308-0d34-0410-b5e6-96231b3b80d8
parent dd0f1b09
No related branches found
No related tags found
No related merge requests found
...@@ -140,7 +140,11 @@ void ODRHash::AddTemplateName(TemplateName Name) { ...@@ -140,7 +140,11 @@ void ODRHash::AddTemplateName(TemplateName Name) {
} }
} }
void ODRHash::AddTemplateArgument(TemplateArgument TA) {} void ODRHash::AddTemplateArgument(TemplateArgument TA) {
const auto Kind = TA.getKind();
ID.AddInteger(Kind);
}
void ODRHash::AddTemplateParameterList(const TemplateParameterList *TPL) {} void ODRHash::AddTemplateParameterList(const TemplateParameterList *TPL) {}
void ODRHash::clear() { void ODRHash::clear() {
......
...@@ -1002,6 +1002,24 @@ S2 s2; ...@@ -1002,6 +1002,24 @@ S2 s2;
#endif #endif
} }
namespace TemplateArgument {
#if defined(FIRST)
template <class> struct U1{};
struct S1 {
U1<int> x;
};
#elif defined(SECOND)
template <int> struct U1{};
struct S1 {
U1<1> x;
};
#else
S1 s1;
// expected-error@first.h:* {{'TemplateArgument::S1::x' from module 'FirstModule' is not present in definition of 'TemplateArgument::S1' in module 'SecondModule'}}
// expected-note@second.h:* {{declaration of 'x' does not match}}
#endif
}
// Interesting cases that should not cause errors. struct S should not error // Interesting cases that should not cause errors. struct S should not error
// while struct T should error at the access specifier mismatch at the end. // while struct T should error at the access specifier mismatch at the end.
namespace AllDecls { namespace AllDecls {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment