This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Bootstrap failure on gcc-3_4-branch for powerpc-eabisim target.
On Thu, Feb 19, 2004 at 08:12:08AM -0800, Andrew Pinski wrote:
> On Feb 19, 2004, at 08:00, Karel Gardas wrote:
> >../../combined/gcc/function.c:5245: undefined reference to
> >`set_decl_incoming_rtl'
>
> This was caused by:
> 2004-02-19 Alan Modra <amodra@bigpond.net.au>
Sorry. Obvious fix applied.
* function.c (assign_parms): Correct leakage of mainline code
in last commit.
Index: gcc/function.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/function.c,v
retrieving revision 1.483.4.3
diff -u -p -r1.483.4.3 function.c
--- gcc/function.c 19 Feb 2004 08:05:46 -0000 1.483.4.3
+++ gcc/function.c 19 Feb 2004 22:34:39 -0000
@@ -5242,7 +5242,7 @@ assign_parms (tree fndecl)
imag = gen_lowpart_SUBREG (inner, imag);
}
tmp = gen_rtx_CONCAT (DECL_MODE (parm), real, imag);
- set_decl_incoming_rtl (parm, tmp);
+ DECL_INCOMING_RTL (parm) = tmp;
fnargs = TREE_CHAIN (fnargs);
}
else
--
Alan Modra
IBM OzLabs - Linux Technology Centre