This is the mail archive of the gcc-patches@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]

another calls.c typo


Surprisingly, this didn't seem to cause any sorts of bad
code generated.  But it did make compilation slow to a crawl
while we count down from 5e8 or so.


r~


        * calls.c (try_to_integrate): Initialize reg_parm_stack_space.

Index: calls.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/calls.c,v
retrieving revision 1.113
diff -c -p -d -r1.113 calls.c
*** calls.c	2000/04/04 17:19:29	1.113
--- calls.c	2000/04/05 01:04:30
*************** try_to_integrate (fndecl, actparms, targ
*** 1748,1754 ****
    rtx before_call;
    int i;
    rtx old_stack_level = 0;
!   int reg_parm_stack_space;
  
  #ifdef REG_PARM_STACK_SPACE
  #ifdef MAYBE_REG_PARM_STACK_SPACE
--- 1748,1754 ----
    rtx before_call;
    int i;
    rtx old_stack_level = 0;
!   int reg_parm_stack_space = 0;
  
  #ifdef REG_PARM_STACK_SPACE
  #ifdef MAYBE_REG_PARM_STACK_SPACE

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