re PR c++/32992 (Incorrect code generated for anonymous union and return)
authorJakub Jelinek <jakub@redhat.com>
Wed, 15 Aug 2007 12:08:42 +0000 (14:08 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 15 Aug 2007 12:08:42 +0000 (14:08 +0200)
PR c++/32992
* typeck.c (check_return_expr): Don't NRV optimize vars in
anonymous unions.
* decl.c (finish_function): Comment fix.

* g++.dg/opt/nrv14.C: New test.

From-SVN: r127510

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/cp/typeck.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/opt/nrv14.C [new file with mode: 0644]

index 892e8a6ef874d931ef100d4c45b7cd031e750309..6a7a4a41dfd79fdbbc141635e8a47b2adae30f3f 100644 (file)
@@ -1,3 +1,10 @@
+2007-08-15  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/32992
+       * typeck.c (check_return_expr): Don't NRV optimize vars in
+       anonymous unions.
+       * decl.c (finish_function): Comment fix.
+
 2007-08-15  Paolo Carlini  <pcarlini@suse.de>
 
        PR c++/33035
index 9a9436a5624874eb00baf863f09c995c2437c3ba..b04fda369ef8519f0f3e101b29fa26c33b34f365 100644 (file)
@@ -11569,7 +11569,7 @@ finish_function (int flags)
   gcc_assert (stmts_are_full_exprs_p ());
 
   /* Set up the named return value optimization, if we can.  Candidate
-     variables are selected in check_return_value.  */
+     variables are selected in check_return_expr.  */
   if (current_function_return_value)
     {
       tree r = current_function_return_value;
index d2e095c634e6d1cca89fd258183078ef1a78e3fa..a79f6e2dd46add26747ca47b18e042524cd313ae 100644 (file)
@@ -6703,6 +6703,7 @@ check_return_expr (tree retval, bool *no_warning)
      && TREE_CODE (retval) == VAR_DECL
      && DECL_CONTEXT (retval) == current_function_decl
      && ! TREE_STATIC (retval)
+     && ! DECL_ANON_UNION_VAR_P (retval)
      && (DECL_ALIGN (retval)
          >= DECL_ALIGN (DECL_RESULT (current_function_decl)))
      /* The cv-unqualified type of the returned value must be the
index eef5e699cad22328ff1e173f4976e39c9386b6d2..45fc15cd363deb09b09993146ae327c4cc6486e8 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-15  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/32992
+       * g++.dg/opt/nrv14.C: New test.
+
 2007-08-15  Paolo Carlini  <pcarlini@suse.de>
 
        PR c++/33035
diff --git a/gcc/testsuite/g++.dg/opt/nrv14.C b/gcc/testsuite/g++.dg/opt/nrv14.C
new file mode 100644 (file)
index 0000000..22526d6
--- /dev/null
@@ -0,0 +1,39 @@
+// PR c++/32992
+// { dg-do run }
+// { dg-options "-O2" }
+
+extern "C" void abort (void);
+
+struct A
+{
+  long int a1;
+  long int a2;
+  long int a3;
+};
+
+struct B
+{
+  long int f[3];
+  operator A ()
+  {
+    union
+    {
+      long int t[3];
+      A a;
+    };
+    for (int i = 0; i < 3; i++)
+      t[i] = f[i];
+    return a;
+  }
+};
+
+int
+main ()
+{
+  B b = { {1, 3, 5} };
+  A a = b;
+
+  if (a.a1 != b.f[0] || a.a2 != b.f[1] || a.a3 != b.f[2])
+    abort ();
+  return 0;
+}