forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Clang][Sema] Do not mark template parameters in the exception specif…
…ication as used during partial ordering (llvm#91534) We do not deduce template arguments from the exception specification when determining the primary template of a function template specialization or when taking the address of a function template. Therefore, this patch changes `isAtLeastAsSpecializedAs` such that we do not mark template parameters in the exception specification as 'used' during partial ordering (per [temp.deduct.partial] p12) to prevent the following from being ambiguous: ``` template<typename T, typename U> void f(U) noexcept(noexcept(T())); // #1 template<typename T> void f(T*) noexcept; // #2 template<> void f<int>(int*) noexcept; // currently ambiguous, selects #2 with this patch applied ``` Although there is no corresponding wording in the standard (see core issue filed here cplusplus/CWG#537), this seems to be the intended behavior given the definition of _deduction substitution loci_ in [temp.deduct.general] p7 (and EDG does the same thing).
- Loading branch information
1 parent
e00a3cc
commit 667d12f
Showing
3 changed files
with
103 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/p3.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// RUN: %clang_cc1 -fsyntax-only -verify %s | ||
// expected-no-diagnostics | ||
|
||
template<bool B> | ||
struct A { }; | ||
|
||
constexpr A<false> a; | ||
constexpr A<false> b; | ||
|
||
constexpr int* x = nullptr; | ||
constexpr short* y = nullptr; | ||
|
||
namespace ExplicitArgs { | ||
template<typename T, typename U> | ||
constexpr int f(U) noexcept(noexcept(T())) { | ||
return 0; | ||
} | ||
|
||
template<typename T> | ||
constexpr int f(T*) noexcept { | ||
return 1; | ||
} | ||
|
||
template<> | ||
constexpr int f<int>(int*) noexcept { | ||
return 2; | ||
} | ||
|
||
static_assert(f<int>(1) == 0); | ||
static_assert(f<short>(y) == 1); | ||
static_assert(f<int>(x) == 2); | ||
|
||
template<typename T, typename U> | ||
constexpr int g(U*) noexcept(noexcept(T())) { | ||
return 3; | ||
} | ||
|
||
template<typename T> | ||
constexpr int g(T) noexcept { | ||
return 4; | ||
} | ||
|
||
template<> | ||
constexpr int g<int>(int*) noexcept { | ||
return 5; | ||
} | ||
|
||
static_assert(g<int>(y) == 3); | ||
static_assert(g<short>(1) == 4); | ||
static_assert(g<int>(x) == 5); | ||
} // namespace ExplicitArgs | ||
|
||
namespace DeducedArgs { | ||
template<typename T, bool B> | ||
constexpr int f(T, A<B>) noexcept(B) { | ||
return 0; | ||
} | ||
|
||
template<typename T, bool B> | ||
constexpr int f(T*, A<B>) noexcept(B && B) { | ||
return 1; | ||
} | ||
|
||
template<> | ||
constexpr int f(int*, A<false>) { | ||
return 2; | ||
} | ||
|
||
static_assert(f<int*>(x, a) == 0); | ||
static_assert(f<short>(y, a) == 1); | ||
static_assert(f<int>(x, a) == 2); | ||
} // namespace DeducedArgs |