(assign_parms): Provide a safe value for
authorTom Wood <wood@gnu.org>
Thu, 8 Oct 1992 22:08:29 +0000 (22:08 +0000)
committerTom Wood <wood@gnu.org>
Thu, 8 Oct 1992 22:08:29 +0000 (22:08 +0000)
DECL_INCOMING_RTL in case of syntax errors.

From-SVN: r2375

gcc/function.c

index f79ebd0f05e1bceacaf83c760f0ee9e7d161562f..8ee075474db0329d00b5d6d9cbde600062d78a77 100644 (file)
@@ -2676,7 +2676,8 @@ assign_parms (fndecl, second_time)
          || TREE_CODE (parm) != PARM_DECL
          || passed_type == NULL)
        {
-         DECL_RTL (parm) = gen_rtx (MEM, BLKmode, const0_rtx);
+         DECL_INCOMING_RTL (parm) = DECL_RTL (parm) = gen_rtx (MEM, BLKmode,
+                                                               const0_rtx);
          TREE_USED (parm) = 1;
          continue;
        }