Commit cb9a8e97 by Douglas B Rupp Committed by Richard Kenner

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

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

From-SVN: r50577
parent 50c74579
2002-03-11 Douglas B Rupp <rupp@gnat.com> 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.
* toplev.c (debug_args): Add entry for VMS_DEBUG. * toplev.c (debug_args): Add entry for VMS_DEBUG.
* vmsdbgout.c (vmsdbgout_init): Fix typo in call to xmalloc. * vmsdbgout.c (vmsdbgout_init): Fix typo in call to xmalloc.
......
...@@ -5969,10 +5969,10 @@ alpha_sa_size () ...@@ -5969,10 +5969,10 @@ alpha_sa_size ()
else else
alpha_procedure_type = PT_NULL; alpha_procedure_type = PT_NULL;
/* Don't reserve space for saving RA yet. Do that later after we've /* 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. */ made the final decision on stack procedure vs register procedure. */
if (alpha_procedure_type == PT_STACK) if (alpha_procedure_type == PT_STACK)
sa_size--; sa_size -= 2;
/* Decide whether to refer to objects off our PV via FP or PV. /* 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 If we need FP for something else or if we receive a nonlocal
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment