Commit 47a0b68f by Jeffrey A Law Committed by Jeff Law

* cse.c (rtx_cost): Only call CONST_COSTS if it is defined.

From-SVN: r18787
parent 65d98182
Mon Mar 23 23:49:47 1998 Jeffrey A Law (law@cygnus.com)
* cse.c (rtx_cost): Only call CONST_COSTS if it is defined.
* stmt.c (unroll_block_trees): Free block_vector if needed.
Mon Mar 23 23:26:42 1998 Philippe De Muyter <phdm@macqel.be>
......
......@@ -750,7 +750,9 @@ rtx_cost (x, outer_code)
#ifdef RTX_COSTS
RTX_COSTS (x, code, outer_code);
#endif
#ifdef CONST_COSTS
CONST_COSTS (x, code, outer_code);
#endif
default:
#ifdef DEFAULT_RTX_COSTS
......
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