aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/init.c
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2011-11-13 00:09:36 -0500
committerJason Merrill <jason@gcc.gnu.org>2011-11-13 00:09:36 -0500
commit2c6f792709071cd3492a10b79924674924f7fb1c (patch)
treed4bb198a43ba892c06b25855372885a1f92e3520 /gcc/cp/init.c
parentafe5cf219076d5f529ce767563aa36ea07970356 (diff)
downloadgcc-2c6f792709071cd3492a10b79924674924f7fb1c.zip
gcc-2c6f792709071cd3492a10b79924674924f7fb1c.tar.gz
gcc-2c6f792709071cd3492a10b79924674924f7fb1c.tar.bz2
re PR c++/986 (g++ misses warning for reference on temporary that invokes undefined behaviour)
PR c++/986 * call.c (set_up_extended_ref_temp): Warn about references bound to non-static reference members. * init.c (perform_member_init): Pass in the member. From-SVN: r181334
Diffstat (limited to 'gcc/cp/init.c')
-rw-r--r--gcc/cp/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/init.c b/gcc/cp/init.c
index 77fe42e..5c20e32 100644
--- a/gcc/cp/init.c
+++ b/gcc/cp/init.c
@@ -599,7 +599,7 @@ perform_member_init (tree member, tree init)
if (init == error_mark_node)
return;
/* Use 'this' as the decl, as it has the lifetime we want. */
- init = extend_ref_init_temps (current_class_ptr, init, &cleanups);
+ init = extend_ref_init_temps (member, init, &cleanups);
if (TREE_CODE (type) == ARRAY_TYPE
&& TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (type)))
init = build_vec_init_expr (type, init, tf_warning_or_error);