Commit e0681eaa by Richard Sandiford Committed by Richard Sandiford

mips.c (mips_va_start): Fix types in calls to build_int_cst.

gcc/
	* config/mips/mips.c (mips_va_start): Fix types in calls
	to build_int_cst.

From-SVN: r129525
parent a1569a0e
2007-10-21 Richard Sandiford <rsandifo@nildram.co.uk> 2007-10-21 Richard Sandiford <rsandifo@nildram.co.uk>
* config/mips/mips.c (mips_va_start): Fix types in calls
to build_int_cst.
2007-10-21 Richard Sandiford <rsandifo@nildram.co.uk>
* config/mips/mips.c (mips_rtx_costs): Only recognize reciprocals * config/mips/mips.c (mips_rtx_costs): Only recognize reciprocals
if ISA_HAS_FP4. if ISA_HAS_FP4.
...@@ -4826,13 +4826,13 @@ mips_va_start (tree valist, rtx nextarg) ...@@ -4826,13 +4826,13 @@ mips_va_start (tree valist, rtx nextarg)
/* Emit code to initialize GOFF, the offset from GTOP of the /* Emit code to initialize GOFF, the offset from GTOP of the
next GPR argument. */ next GPR argument. */
t = build2 (GIMPLE_MODIFY_STMT, TREE_TYPE (goff), goff, t = build2 (GIMPLE_MODIFY_STMT, TREE_TYPE (goff), goff,
build_int_cst (NULL_TREE, gpr_save_area_size)); build_int_cst (TREE_TYPE (goff), gpr_save_area_size));
expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL); expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
/* Likewise emit code to initialize FOFF, the offset from FTOP /* Likewise emit code to initialize FOFF, the offset from FTOP
of the next FPR argument. */ of the next FPR argument. */
t = build2 (GIMPLE_MODIFY_STMT, TREE_TYPE (foff), foff, t = build2 (GIMPLE_MODIFY_STMT, TREE_TYPE (foff), foff,
build_int_cst (NULL_TREE, fpr_save_area_size)); build_int_cst (TREE_TYPE (foff), fpr_save_area_size));
expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL); expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
} }
else else
......
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