Commit bce75972 by Vladimir Makarov Committed by Vladimir Makarov

i386.c (ix86_memory_move_cost): Fix typo.

2003-06-16  Vladimir Makarov  <vmakarov@redhat.com>

	* config/i386/i386.c (ix86_memory_move_cost): Fix typo.

From-SVN: r68020
parent 9286d5a8
2003-06-16 Vladimir Makarov <vmakarov@redhat.com>
* config/i386/i386.c (ix86_memory_move_cost): Fix typo.
2003-06-16 Andreas Jaeger <aj@suse.de>
* basic-block.h: Remove duplicate prototype of
......
......@@ -14892,8 +14892,8 @@ ix86_memory_move_cost (mode, class, in)
if (mode == TFmode)
mode = XFmode;
return ((in ? ix86_cost->int_load[2] : ix86_cost->int_store[2])
* ((int) GET_MODE_SIZE (mode)
+ UNITS_PER_WORD -1 ) / UNITS_PER_WORD);
* (((int) GET_MODE_SIZE (mode)
+ UNITS_PER_WORD - 1) / UNITS_PER_WORD));
}
}
......
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