-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assertion hit: "consteval function should never be emitted" #61142
Comments
Could this be: #60275 If you can try with the latest clang that would be helpful. Otherwise if you can reduce the test case using either creduce or cvice, that would help. |
This is what a couple of runs of creduce gave me
The assertion is:
|
@llvm/issue-subscribers-clang-codegen |
Well, I had a bit more fun reducing the test case, looks like due to some clash of consteval handling and templates magic an undefined (!) consteval function makes it to the codegen, hence the assertion, the test case is:
https://godbolt.org/z/536qEq6c9 Though adding definition of |
I think this is in @cor3ntin wheelhouse. We have a |
The default param was a red herring. I further reduced it, I'll investigate a bit consteval void f() {}
template <class T>
struct TheBadOne {
constexpr void MakeCrash() {; f(); }
};
struct t {
consteval t() {
apap.MakeCrash();
}
TheBadOne<int> apap;
};
void q() {
t{}.apap.MakeCrash();
} |
Okay, this is actually pretty bad... template <typename T>
struct Test {
constexpr static void g() {
f();
}
consteval static void f() {};
};
consteval void a() {
Test<int>::g();
}
void b() {
Test<int>::g();
} When we instantiate g() the first time, we do so in an immediate function context, so |
@llvm/issue-subscribers-clang-frontend |
The function |
I'm not sure that it is correct to consider that we're in an immediate function context when instantiating |
…unction Due to not resetting that, clang still thinks that it is in immediate function context even if it already entered non-consteval function. This caused consteval functions reaching codegen in some cases. Fixes llvm#61142 Reviewed By: cor3ntin, aaron.ballman Differential Revision: https://reviews.llvm.org/D147531
The failure happens due to a user defined string literal with a data template parameter class that has a consteval constructor.
https://github.com/chromium/subspace/blob/496b8b245ad711e5155bc21e32c9f31fd8304f1b/subspace/ops/range_literals.h#L39
range_unittest-763415.zip
The text was updated successfully, but these errors were encountered: