diff options
author | Younan Zhang <zyn7109@gmail.com> | 2024-09-02 13:42:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-02 13:42:42 +0800 |
commit | 358165ded3c45115ce587d56ef792a9e7c0214ea (patch) | |
tree | 63fe73e19bd0c34ad181b8df5e138268655cf3d4 /llvm/lib/Support/APInt.cpp | |
parent | 647f892a7281e99c4209cee07097f6a052ed474f (diff) | |
download | llvm-358165ded3c45115ce587d56ef792a9e7c0214ea.zip llvm-358165ded3c45115ce587d56ef792a9e7c0214ea.tar.gz llvm-358165ded3c45115ce587d56ef792a9e7c0214ea.tar.bz2 |
[Clang][Concepts] Correct the CurContext for friend declarations (#106890)
`FindInstantiatedDecl()` relies on the `CurContext` to find the
corresponding class template instantiation for a class template
declaration.
Previously, we pushed the semantic declaration context for constraint
comparison, which is incorrect for constraints on friend declarations.
In issue #78101, the semantic context of the friend is the TU, so we
missed the implicit template specialization `Template<void, 4>` when
looking for the instantiation of the primary template `Template` at the
time of checking the member instantiation; instead, we mistakenly picked
up the explicit specialization `Template<float, 5>`, hence the error.
As a bonus, this also fixes a crash when diagnosing constraints. The
DeclarationName is not necessarily an identifier, so it's incorrect to
call `getName()` on e.g. overloaded operators. Since the
DiagnosticBuilder has correctly handled Decl printing, we don't need to
find the printable name ourselves.
Fixes https://github.com/llvm/llvm-project/issues/78101
Diffstat (limited to 'llvm/lib/Support/APInt.cpp')
0 files changed, 0 insertions, 0 deletions