Commit cd6b7bc6 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

* config/cris/cris.c (cris_rtx_costs): Correct call to rtx_costs.

From-SVN: r139840
parent 9e2af376
2008-08-31 Hans-Peter Nilsson <hp@axis.com>
* config/cris/cris.c (cris_rtx_costs): Correct call to rtx_costs.
2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
* gthr-win32.h (__gthread_setspecific): Use CONST_CAST2.
......
......@@ -1834,7 +1834,7 @@ cris_rtx_costs (rtx x, int code, int outer_code, int *total,
&& !CONST_INT_P (XEXP (x, 0))
&& !CRIS_CONST_OK_FOR_LETTER_P (INTVAL (XEXP (x, 1)), 'I'))
{
*total = (rtx_cost (XEXP (x, 0), outer_code) + 2
*total = (rtx_cost (XEXP (x, 0), outer_code, speed) + 2
+ 2 * GET_MODE_NUNITS (GET_MODE (XEXP (x, 0))));
return true;
}
......
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