Commit afc066ef by Alan Modra Committed by Alan Modra

function.c (assign_parms): Don't abort with zero size stack parm failing the PARM_BOUNDARY check.

	* function.c (assign_parms): Don't abort with zero size stack
	parm failing the PARM_BOUNDARY check.

From-SVN: r83840
parent e440ec57
2004-06-29 Alan Modra <amodra@bigpond.net.au>
* function.c (assign_parms): Don't abort with zero size stack
parm failing the PARM_BOUNDARY check.
2004-06-28 Diego Novillo <dnovillo@redhat.com> 2004-06-28 Diego Novillo <dnovillo@redhat.com>
* common.opt (ftree-fre): New flag. * common.opt (ftree-fre): New flag.
......
...@@ -4821,7 +4821,7 @@ assign_parms (tree fndecl) ...@@ -4821,7 +4821,7 @@ assign_parms (tree fndecl)
} }
else if (GET_CODE (entry_parm) == PARALLEL) else if (GET_CODE (entry_parm) == PARALLEL)
; ;
else if (PARM_BOUNDARY % BITS_PER_WORD != 0) else if (size != 0 && PARM_BOUNDARY % BITS_PER_WORD != 0)
abort (); abort ();
mem = validize_mem (stack_parm); mem = validize_mem (stack_parm);
......
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