mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-27 11:34:14 +08:00
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
This commit is contained in:
parent
9286d5a8a0
commit
bce7597204
@ -1,3 +1,7 @@
|
||||
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));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user