From: Tom Wood Date: Thu, 8 Oct 1992 22:08:29 +0000 (+0000) Subject: (assign_parms): Provide a safe value for X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=587cb682de5b023e77bb580de95f7aad9bcd9ce2;p=gcc.git (assign_parms): Provide a safe value for DECL_INCOMING_RTL in case of syntax errors. From-SVN: r2375 --- diff --git a/gcc/function.c b/gcc/function.c index f79ebd0f05e..8ee075474db 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -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; }