Commit d3294cd9 by Franz Sirl Committed by Franz Sirl

rs6000.c (rs6000_va_arg): Correctly set register count for aggregate and TFmode types.

	2002-03-29  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>

	* config/rs6000/rs6000.c (rs6000_va_arg): Correctly set register count
	for aggregate and TFmode types.

From-SVN: r51591
parent a106c875
2002-03-29 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* config/rs6000/rs6000.c (rs6000_va_arg): Correctly set register count
for aggregate and TFmode types.
2002-03-29 Hans-Peter Nilsson <hp@bitrange.com>
* cfg.c (dump_flow_info): Guard against NULL regno_reg_rtx[i].
......
......@@ -3118,7 +3118,8 @@ rs6000_va_arg (valist, type)
n_reg = 1;
sav_ofs = 0;
sav_scale = 4;
size = rsize = UNITS_PER_WORD;
size = UNITS_PER_WORD;
rsize = 1;
}
else if (FLOAT_TYPE_P (type) && ! TARGET_SOFT_FLOAT)
{
......
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