(expand_function_end): Handle BLKmode structures returned
authorJim Wilson <wilson@gcc.gnu.org>
Sat, 9 Nov 1996 01:37:54 +0000 (17:37 -0800)
committerJim Wilson <wilson@gcc.gnu.org>
Sat, 9 Nov 1996 01:37:54 +0000 (17:37 -0800)
in registers.

From-SVN: r13117

gcc/function.c

index 827f14be9d7736b65a809ae4cb606a09871f0746..6fa9811a085a4309a8f54b5768f342413032faf6 100644 (file)
@@ -5549,6 +5549,11 @@ expand_function_end (filename, line, end_bindings)
                          current_function_decl);
 #endif
       REG_FUNCTION_VALUE_P (real_decl_result) = 1;
+      /* If this is a BLKmode structure being returned in registers, then use
+        the mode computed in expand_return.  */
+      if (GET_MODE (real_decl_result) == BLKmode)
+       PUT_MODE (real_decl_result,
+                 GET_MODE (DECL_RTL (DECL_RESULT (current_function_decl))));
       emit_move_insn (real_decl_result,
                      DECL_RTL (DECL_RESULT (current_function_decl)));
       emit_insn (gen_rtx (USE, VOIDmode, real_decl_result));