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]
Other format: [Raw text]

Patch to VMS prologue


Committed to trunk and 3.1 branch.

2002-03-11  Douglas B Rupp  <rupp@gnat.com>

	* config/alpha/alpha.c (alpha_sa_size, VMS): Don't reserve space
	for FP, already done later.

*** config/alpha/alpha.c.2	Wed Feb 13 00:04:47 2002
--- config/alpha/alpha.c	Fri Feb 22 13:53:52 2002
***************
*** 5963,5972 ****
        else
  	alpha_procedure_type = PT_NULL;
  
!       /* Don't reserve space for saving RA yet.  Do that later after we've
  	 made the final decision on stack procedure vs register procedure.  */
        if (alpha_procedure_type == PT_STACK)
! 	sa_size--;
  
        /* Decide whether to refer to objects off our PV via FP or PV.
  	 If we need FP for something else or if we receive a nonlocal
--- 5963,5972 ----
        else
  	alpha_procedure_type = PT_NULL;
  
!       /* Don't reserve space for saving FP & RA yet.  Do that later after we've
  	 made the final decision on stack procedure vs register procedure.  */
        if (alpha_procedure_type == PT_STACK)
! 	sa_size -= 2;
  
        /* Decide whether to refer to objects off our PV via FP or PV.
  	 If we need FP for something else or if we receive a nonlocal


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