diff options
author | Jason Merrill <jason@redhat.com> | 2011-11-13 00:09:36 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2011-11-13 00:09:36 -0500 |
commit | 2c6f792709071cd3492a10b79924674924f7fb1c (patch) | |
tree | d4bb198a43ba892c06b25855372885a1f92e3520 /gcc/cp/init.c | |
parent | afe5cf219076d5f529ce767563aa36ea07970356 (diff) | |
download | gcc-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.c | 2 |
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); |