Commit e87b4dde by Jason Merrill Committed by Jason Merrill

re PR c++/44870 ([C++0x] error when calling function with rvalue argument inside template)

	PR c++/44870
	* tree.c (lvalue_kind): Recurse on NON_DEPENDENT_EXPR.  Handle
	ARROW_EXPR, TYPEID_EXPR, and arbitrary class-valued expressions.
	(build_min_non_dep): Preserve reference refs.
	(build_min_non_dep_call_vec): Likewise

From-SVN: r174499
parent 5cc93ee0
2011-05-31 Jason Merrill <jason@redhat.com>
PR c++/44870
* tree.c (lvalue_kind): Recurse on NON_DEPENDENT_EXPR. Handle
ARROW_EXPR, TYPEID_EXPR, and arbitrary class-valued expressions.
(build_min_non_dep): Preserve reference refs.
(build_min_non_dep_call_vec): Likewise
2011-05-30 Jakub Jelinek <jakub@redhat.com> 2011-05-30 Jakub Jelinek <jakub@redhat.com>
PR c++/49223 PR c++/49223
......
...@@ -139,6 +139,7 @@ lvalue_kind (const_tree ref) ...@@ -139,6 +139,7 @@ lvalue_kind (const_tree ref)
&& DECL_IN_AGGR_P (ref)) && DECL_IN_AGGR_P (ref))
return clk_none; return clk_none;
case INDIRECT_REF: case INDIRECT_REF:
case ARROW_EXPR:
case ARRAY_REF: case ARRAY_REF:
case PARM_DECL: case PARM_DECL:
case RESULT_DECL: case RESULT_DECL:
...@@ -170,6 +171,7 @@ lvalue_kind (const_tree ref) ...@@ -170,6 +171,7 @@ lvalue_kind (const_tree ref)
break; break;
case MODIFY_EXPR: case MODIFY_EXPR:
case TYPEID_EXPR:
return clk_ordinary; return clk_ordinary;
case COMPOUND_EXPR: case COMPOUND_EXPR:
...@@ -182,7 +184,9 @@ lvalue_kind (const_tree ref) ...@@ -182,7 +184,9 @@ lvalue_kind (const_tree ref)
return (CLASS_TYPE_P (TREE_TYPE (ref)) ? clk_class : clk_none); return (CLASS_TYPE_P (TREE_TYPE (ref)) ? clk_class : clk_none);
case CALL_EXPR: case CALL_EXPR:
/* Any class-valued call would be wrapped in a TARGET_EXPR. */ /* We can see calls outside of TARGET_EXPR in templates. */
if (CLASS_TYPE_P (TREE_TYPE (ref)))
return clk_class;
return clk_none; return clk_none;
case FUNCTION_DECL: case FUNCTION_DECL:
...@@ -199,14 +203,16 @@ lvalue_kind (const_tree ref) ...@@ -199,14 +203,16 @@ lvalue_kind (const_tree ref)
return lvalue_kind (BASELINK_FUNCTIONS (CONST_CAST_TREE (ref))); return lvalue_kind (BASELINK_FUNCTIONS (CONST_CAST_TREE (ref)));
case NON_DEPENDENT_EXPR: case NON_DEPENDENT_EXPR:
/* We must consider NON_DEPENDENT_EXPRs to be lvalues so that /* We used to just return clk_ordinary for NON_DEPENDENT_EXPR because
things like "&E" where "E" is an expression with a it was safe enough for C++98, but in C++0x lvalues don't bind to
non-dependent type work. It is safe to be lenient because an rvalue references, so we get bogus errors (c++/44870). */
error will be issued when the template is instantiated if "E" return lvalue_kind (TREE_OPERAND (ref, 0));
is not an lvalue. */
return clk_ordinary;
default: default:
if (!TREE_TYPE (ref))
return clk_none;
if (CLASS_TYPE_P (TREE_TYPE (ref)))
return clk_class;
break; break;
} }
...@@ -1985,6 +1991,9 @@ build_min_non_dep (enum tree_code code, tree non_dep, ...) ...@@ -1985,6 +1991,9 @@ build_min_non_dep (enum tree_code code, tree non_dep, ...)
va_start (p, non_dep); va_start (p, non_dep);
if (REFERENCE_REF_P (non_dep))
non_dep = TREE_OPERAND (non_dep, 0);
t = make_node (code); t = make_node (code);
length = TREE_CODE_LENGTH (code); length = TREE_CODE_LENGTH (code);
TREE_TYPE (t) = TREE_TYPE (non_dep); TREE_TYPE (t) = TREE_TYPE (non_dep);
...@@ -2002,7 +2011,7 @@ build_min_non_dep (enum tree_code code, tree non_dep, ...) ...@@ -2002,7 +2011,7 @@ build_min_non_dep (enum tree_code code, tree non_dep, ...)
COMPOUND_EXPR_OVERLOADED (t) = 1; COMPOUND_EXPR_OVERLOADED (t) = 1;
va_end (p); va_end (p);
return t; return convert_from_reference (t);
} }
/* Similar to `build_nt_call_vec', but for template definitions of /* Similar to `build_nt_call_vec', but for template definitions of
...@@ -2013,9 +2022,11 @@ tree ...@@ -2013,9 +2022,11 @@ tree
build_min_non_dep_call_vec (tree non_dep, tree fn, VEC(tree,gc) *argvec) build_min_non_dep_call_vec (tree non_dep, tree fn, VEC(tree,gc) *argvec)
{ {
tree t = build_nt_call_vec (fn, argvec); tree t = build_nt_call_vec (fn, argvec);
if (REFERENCE_REF_P (non_dep))
non_dep = TREE_OPERAND (non_dep, 0);
TREE_TYPE (t) = TREE_TYPE (non_dep); TREE_TYPE (t) = TREE_TYPE (non_dep);
TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep); TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (non_dep);
return t; return convert_from_reference (t);
} }
tree tree
......
2011-05-31 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/rv-template1.C: New.
2011-05-31 Jakub Jelinek <jakub@redhat.com> 2011-05-31 Jakub Jelinek <jakub@redhat.com>
PR rtl-optimization/49235 PR rtl-optimization/49235
......
// PR c++/44870
// { dg-options -std=c++0x }
void foo(int&& data);
template <typename T>
void bar(T t)
{ foo(int()); }
void baz()
{ bar(0); }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment