This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Bootstrap failure on gcc-3_4-branch for powerpc-eabisim target.


On Fri, Feb 20, 2004 at 09:16:03AM +1030, Alan Modra wrote:
> 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.

Oh dear, I see I also leaked code from my INIT_CUMULATIVE_ARGS patch.

	* function.c (assign_parms): ....
	....  Also leakage from INIT_CUMULATIVE_ARGS patch.

Committed.

Index: gcc/function.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/function.c,v
retrieving revision 1.483.4.4
diff -u -p -r1.483.4.4 function.c
--- gcc/function.c	19 Feb 2004 22:45:14 -0000	1.483.4.4
+++ gcc/function.c	19 Feb 2004 22:54:30 -0000
@@ -4351,7 +4351,7 @@ assign_parms (tree fndecl)
 #ifdef INIT_CUMULATIVE_INCOMING_ARGS
   INIT_CUMULATIVE_INCOMING_ARGS (args_so_far, fntype, NULL_RTX);
 #else
-  INIT_CUMULATIVE_ARGS (args_so_far, fntype, NULL_RTX, fndecl, -1);
+  INIT_CUMULATIVE_ARGS (args_so_far, fntype, NULL_RTX, fndecl);
 #endif
 
   /* We haven't yet found an argument that we must push and pretend the

-- 
Alan Modra
IBM OzLabs - Linux Technology Centre


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]