PR c++/63657
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 22 Nov 2014 02:21:35 +0000 (02:21 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 22 Nov 2014 02:21:35 +0000 (02:21 +0000)
PR c++/38958
* call.c (set_up_extended_ref_temp): Set TREE_USED on the reference
if the temporary has a non-trivial destructor.
* decl.c (poplevel): Don't look through references.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217957 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/call.c
gcc/cp/decl.c
gcc/testsuite/g++.dg/warn/Wunused-var-22.C [new file with mode: 0644]

index b1d9cea..6cc7e62 100644 (file)
@@ -1,5 +1,11 @@
 2014-11-21  Jason Merrill  <jason@redhat.com>
 
+       PR c++/63657
+       PR c++/38958
+       * call.c (set_up_extended_ref_temp): Set TREE_USED on the reference
+       if the temporary has a non-trivial destructor.
+       * decl.c (poplevel): Don't look through references.
+
        PR c++/63942
        * name-lookup.c (supplement_binding_1): Override a mangling alias.
        * mangle.c (maybe_remove_implicit_alias): New.
index 5cda1b1..a7a8667 100644 (file)
@@ -9622,6 +9622,10 @@ set_up_extended_ref_temp (tree decl, tree expr, vec<tree, va_gc> **cleanups,
        /* Check whether the dtor is callable.  */
        cxx_maybe_build_cleanup (var, tf_warning_or_error);
     }
+  /* Avoid -Wunused-variable warning (c++/38958).  */
+  if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
+      && TREE_CODE (decl) == VAR_DECL)
+    TREE_USED (decl) = DECL_READ_P (decl) = true;
 
   *initp = init;
   return var;
index 899637f..225d408 100644 (file)
@@ -638,8 +638,7 @@ poplevel (int keep, int reverse, int functionbody)
           push_local_binding where the list of decls returned by
           getdecls is built.  */
        decl = TREE_CODE (d) == TREE_LIST ? TREE_VALUE (d) : d;
-       // See through references for improved -Wunused-variable (PR 38958).
-       tree type = non_reference (TREE_TYPE (decl));
+       tree type = TREE_TYPE (decl);
        if (VAR_P (decl)
            && (! TREE_USED (decl) || !DECL_READ_P (decl))
            && ! DECL_IN_SYSTEM_HEADER (decl)
diff --git a/gcc/testsuite/g++.dg/warn/Wunused-var-22.C b/gcc/testsuite/g++.dg/warn/Wunused-var-22.C
new file mode 100644 (file)
index 0000000..8ae46c1
--- /dev/null
@@ -0,0 +1,12 @@
+// PR c++/63657
+// { dg-options "-Wunused-variable" }
+
+class Bar
+{
+  virtual ~Bar() {}
+};
+Bar& getbar();
+void bar()
+{
+  Bar& b = getbar();           // { dg-warning "unused" }
+}