PR c++/91230 - wrong error with __PRETTY_FUNCTION__ and generic lambda.

* pt.c (value_dependent_expression_p): Consider __PRETTY_FUNCTION__
	inside a template function value-dependent.

	* g++.dg/cpp1y/lambda-generic-pretty1.C: New test.

From-SVN: r274009
This commit is contained in:
Marek Polacek 2019-08-02 13:26:06 +00:00 committed by Marek Polacek
parent 0c60e39e25
commit b34fd35b83
4 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2019-08-02 Marek Polacek <polacek@redhat.com>
PR c++/91230 - wrong error with __PRETTY_FUNCTION__ and generic lambda.
* pt.c (value_dependent_expression_p): Consider __PRETTY_FUNCTION__
inside a template function value-dependent.
2019-08-02 Paolo Carlini <paolo.carlini@oracle.com>
* tree.c (handle_nodiscard_attribute): Do not warn about nodiscard

View File

@ -25553,7 +25553,14 @@ value_dependent_expression_p (tree expression)
if (DECL_HAS_VALUE_EXPR_P (expression))
{
tree value_expr = DECL_VALUE_EXPR (expression);
if (value_dependent_expression_p (value_expr))
if (value_dependent_expression_p (value_expr)
/* __PRETTY_FUNCTION__ inside a template function is dependent
on the name of the function. */
|| (DECL_PRETTY_FUNCTION_P (expression)
/* It might be used in a template, but not a template
function, in which case its DECL_VALUE_EXPR will be
"top level". */
&& value_expr == error_mark_node))
return true;
}
return false;

View File

@ -1,3 +1,8 @@
2019-08-02 Marek Polacek <polacek@redhat.com>
PR c++/91230 - wrong error with __PRETTY_FUNCTION__ and generic lambda.
* g++.dg/cpp1y/lambda-generic-pretty1.C: New test.
2019-08-02 Uroš Bizjak <ubizjak@gmail.com>
PR target/91323

View File

@ -0,0 +1,17 @@
// PR c++/91230
// { dg-do compile { target c++14 } }
struct StringWrapper {
const char* Value;
};
template <typename T>
void f() {
[](auto) {
StringWrapper{__PRETTY_FUNCTION__};
};
}
int main() {
f<int>();
}