Commit e1f4b1de by Jan Hubicka Committed by Jan Hubicka

i386.c (register_move_cost): Remove accidentally comitted #if 0 block.


	* config/i386/i386.c (register_move_cost): Remove accidentally comitted
	#if 0 block.

From-SVN: r126997
parent 23b43207
2007-07-27 Jan Hubicka <jh@suse.cz> 2007-07-27 Jan Hubicka <jh@suse.cz>
* config/i386/i386.c (register_move_cost): Remove accidentally comitted
#if 0 block.
* attribs.c: Include hashtab.h * attribs.c: Include hashtab.h
(attribute_hash): New. (attribute_hash): New.
(substring): New structure. (substring): New structure.
......
...@@ -20401,12 +20401,6 @@ ix86_register_move_cost (enum machine_mode mode, enum reg_class class1, ...@@ -20401,12 +20401,6 @@ ix86_register_move_cost (enum machine_mode mode, enum reg_class class1,
{ {
int cost = 1; int cost = 1;
#if 0
cost += MAX (inline_memory_move_cost (mode, class1, 0),
inline_memory_move_cost (mode, class1, 1));
cost += MAX (inline_memory_move_cost (mode, class2, 0),
inline_memory_move_cost (mode, class2, 1));
#endif
cost += inline_memory_move_cost (mode, class1, 2); cost += inline_memory_move_cost (mode, class1, 2);
cost += inline_memory_move_cost (mode, class2, 2); cost += inline_memory_move_cost (mode, class2, 2);
......
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